web-dev-qa-db-fra.com

Comment initialiser QJsonObject à partir de QString

Je suis assez nouveau sur Qt et j'ai une opération très simple que je veux faire: je dois obtenir le JSonObject suivant:

{
    "Record1" : "830957 ",
    "Properties" :
    [{
            "Corporate ID" : "3859043 ",
            "Name" : "John Doe ",
            "Function" : "Power Speaker ",
            "Bonus Points" : ["10 ", "45", "56 ", "34", "56", "10 ", "45", "56 ", "34", "56", "10 ", "45", "56 ", "34", "56", "10 ", "45", "56 ", "34", "56", "10 ", "45", "56 ", "34", "56 ", "10", "45 ", "56", "34 ", "56", "45"]
        }
    ]
}

Le JSon a été vérifié avec ce vérificateur de syntaxe et de validité: http://jsonformatter.curiousconcept.com/ et a été trouvé valide.

J'ai utilisé l'initialisation QJsonValue de String pour cela et l'ai converti en QJSonObject:

QJsonObject ObjectFromString(const QString& in)
{
    QJsonValue val(in);
    return val.toObject();
}

Je charge le JSon collé à partir d'un fichier:

QString path = "C:/Temp";
QFile *file = new QFile(path + "/" + "Input.txt");
file->open(QIODevice::ReadOnly | QFile::Text);
QTextStream in(file);
QString text = in.readAll();
file->close();

qDebug() << text;
QJsonObject obj = ObjectFromString(text);
qDebug() <<obj;

Il y a très certainement un bon moyen de le faire parce que cela ne fonctionne pas, et je n'ai trouvé aucun exemple utile

16
Ioan Paul Pirau

Utilisez QJsonDocument :: fromJson

QString data; // assume this holds the json string

QJsonDocument doc = QJsonDocument::fromJson(data.toUtf8());

Si vous voulez le QJsonObject ...

QJsonObject ObjectFromString(const QString& in)
{
    QJsonObject obj;

    QJsonDocument doc = QJsonDocument::fromJson(in.toUtf8());

    // check validity of the document
    if(!doc.isNull())
    {
        if(doc.isObject())
        {
            obj = doc.object();        
        }
        else
        {
            qDebug() << "Document is not an object" << endl;
        }
    }
    else
    {
        qDebug() << "Invalid JSON...\n" << in << endl;
    }

    return obj;
}
32
TheDarkKnight

Vous devez suivre cette étape

  1. convertir d'abord Qstring en QByteArray
  2. convertir QByteArray en QJsonDocument
  3. convertir QJsonDocument en QJsonObject
QString str = "{\"name\" : \"John\" }";

QByteArray br = str.toUtf8();

QJsonDocument doc = QJsonDocument::fromJson(br);

QJsonObject obj = doc.object();

QString name = obj["name"].toString();
qDebug() << name;
0
Joe