在Qt中使用QJsonDocument解析嵌套的JSON

问题描述 投票:1回答:3

我有兴趣了解如何使用Qt的QJsonDocument来解析来自简单嵌套JSON的所有条目(因为我刚开始研究这个)。

嵌套的json示例:

{
    "city": "London",
    "time": "16:42",
    "unit_data": 
        [
            {
                "unit_data_id": "ABC123",
                "unit_data_number": "21"
            },
            {
                "unit_data_id": "DEF456",
                "unit_data_number": "12"
            }
        ]
}

我可以解析它的非嵌套部分,如下所示:

QJsonObject jObj;
QString city = jObj["city"].toString();
QString time = jObj["time"].toString();
c++ json qt qt5.7
3个回答
4
投票

我不确定你在问什么,但也许这可能会有所帮助:

QJsonDocument doc;
doc = QJsonDocument::fromJson("{                                              "
                              "     \"city\": \"London\",                      "
                              "     \"time\": \"16:42\",                       "
                              "     \"unit_data\":                             "
                              "         [                                      "
                              "             {                                  "
                              "                 \"unit_data_id\": \"ABC123\",  "
                              "                 \"unit_data_number\": \"21\"   "
                              "             },                                 "
                              "             {                                  "
                              "                 \"unit_data_id\": \"DEF456\",  "
                              "                 \"unit_data_number\": \"12\"   "
                              "             }                                  "
                              "         ]                                      "
                              " }");

// This part you have covered
QJsonObject jObj = doc.object();
qDebug() << "city" << jObj["city"].toString();
qDebug() << "time" << jObj["time"].toString();
// Since unit_data is an array, you need to get it as such
QJsonArray array = jObj["unit_data"].toArray();
// Then you can manually access the elements in the array
QJsonObject ar1 = array.at(0).toObject();
qDebug() << "" << ar1["unit_data_id"].toString();
// Or you can loop over the items in the array
int idx = 0;
for(const QJsonValue& val: array) {
    QJsonObject loopObj = val.toObject();
    qDebug() << "[" << idx << "] unit_data_id    : " << loopObj["unit_data_id"].toString();
    qDebug() << "[" << idx << "] unit_data_number: " << loopObj["unit_data_number"].toString();
    ++idx;
}

我得到的输出是:

city "London"
time "16:42"
"ABC123"
[ 0 ] unit_data_id    :  "ABC123"
[ 0 ] unit_data_number:  "21"
[ 1 ] unit_data_id    :  "DEF456"
[ 1 ] unit_data_number:  "12"

2
投票

在JSON表示法中,所有内容都应格式化为键值。键总是字符串,但值可以是字符串文字("example"),数字文字,数组([])和对象({})。

QJsonDocument::fromJson(...).object()返回给定JSON字符串的根对象。回想一下,对象是用{}表示法编写的。这个方法给你一个QJsonObject。这个JSON对象有3个键("city""name""unit_data"),这些键的值分别是string literal,string literal和array。

因此,如果要访问存储在该阵列中的数据,您应该:

QJsonArray array = rootObj["unit_data"].toArray();

请注意,数组没有键,它们只有上面提到的三种类型的值。在这种情况下,该数组包含2个对象,可以将其视为其他JSON对象。所以,

QJsonObject obj = array.at(0).toObject();

现在obj对象指向以下对象:

{
    "unit_data_id": "ABC123",
    "unit_data_number": "21"
}

所以,你现在应该能够做你想做的事。 :)


0
投票

可能会发生JSON中的一个元素内部有更多元素。您也可能不知道文件的特征(或者您想要具有一般功能)。

因此,您可以为任何JSON使用函数:

void traversJson(QJsonObject json_obj){
    foreach(const QString& key, json_obj.keys()) {

        QJsonValue value = json_obj.value(key);
        if(!value.isObject() ){
          qDebug() << "Key = " << key << ", Value = " << value;
         }
        else{
             qDebug() << "Nested Key = " << key;
             traversJson(value.toObject());
        }

    }

};
© www.soinside.com 2019 - 2024. All rights reserved.