如何在 Qt5中创建/读/写 JSON 文件

Qt5有一个新的 JSON 解析器,我想使用它。问题在于,我们不太清楚这些函数在外行人的术语中是做什么的,以及如何用它们编写代码。或者是我看错了。

我想知道在 Qt5中创建 JSON 文件的代码,以及“封装”是什么意思。

125586 次浏览

一个如何使用它的例子将是伟大的。在 QT 论坛中有几个例子,但是您是对的,应该扩展官方文档。

QJsonDocument本身确实不会产生任何东西,您必须向它添加数据。这是通过 QJsonObjectQJsonArrayQJsonValue类完成的。顶级项目需要是数组或对象(因为 1不是有效的 json 文档,而 {foo: 1}是。)

示例: 从文件中读取 json

/* test.json */
{
"appDesc": {
"description": "SomeDescription",
"message": "SomeMessage"
},
"appName": {
"description": "Home",
"message": "Welcome",
"imp":["awesome","best","good"]
}
}




void readJson()
{
QString val;
QFile file;
file.setFileName("test.json");
file.open(QIODevice::ReadOnly | QIODevice::Text);
val = file.readAll();
file.close();
qWarning() << val;
QJsonDocument d = QJsonDocument::fromJson(val.toUtf8());
QJsonObject sett2 = d.object();
QJsonValue value = sett2.value(QString("appName"));
qWarning() << value;
QJsonObject item = value.toObject();
qWarning() << tr("QJsonObject of description: ") << item;


/* in case of string value get value and convert into string*/
qWarning() << tr("QJsonObject[appName] of description: ") << item["description"];
QJsonValue subobj = item["description"];
qWarning() << subobj.toString();


/* in case of array get array and convert into string*/
qWarning() << tr("QJsonObject[appName] of value: ") << item["imp"];
QJsonArray test = item["imp"].toArray();
qWarning() << test[1].toString();
}

输出

QJsonValue(object, QJsonObject({"description": "Home","imp": ["awesome","best","good"],"message": "YouTube"}) )
"QJsonObject of description: " QJsonObject({"description": "Home","imp": ["awesome","best","good"],"message": "YouTube"})
"QJsonObject[appName] of description: " QJsonValue(string, "Home")
"Home"
"QJsonObject[appName] of value: " QJsonValue(array, QJsonArray(["awesome","best","good"]) )
"best"

示例: 从 string 中读取 json

将 json 分配给字符串,如下所示,并使用前面所示的 readJson()函数:

val =
'  {
"appDesc": {
"description": "SomeDescription",
"message": "SomeMessage"
},
"appName": {
"description": "Home",
"message": "Welcome",
"imp":["awesome","best","good"]
}
}';

输出

QJsonValue(object, QJsonObject({"description": "Home","imp": ["awesome","best","good"],"message": "YouTube"}) )
"QJsonObject of description: " QJsonObject({"description": "Home","imp": ["awesome","best","good"],"message": "YouTube"})
"QJsonObject[appName] of description: " QJsonValue(string, "Home")
"Home"
"QJsonObject[appName] of value: " QJsonValue(array, QJsonArray(["awesome","best","good"]) )
"best"

遗憾的是,许多 JSON C + + 库都有可供使用的 API,而 JSON 的初衷是易于使用。

因此,我在上面的一个答案中的 JSON 文档上尝试了 GSOAP 工具中的 Jsoncpp,这是用 jsoncpp 生成的代码,用 C + + 构造一个 JSON 对象,然后用 JSON 格式写到 std: : cout:

value x(ctx);
x["appDesc"]["description"] = "SomeDescription";
x["appDesc"]["message"] = "SomeMessage";
x["appName"]["description"] = "Home";
x["appName"]["message"] = "Welcome";
x["appName"]["imp"][0] = "awesome";
x["appName"]["imp"][1] = "best";
x["appName"]["imp"][2] = "good";
std::cout << x << std::endl;

这是 jsoncpp 生成的代码,用于解析 std: : cin 中的 JSON 并提取其值(根据需要替换 USE_VAL) :

value x(ctx);
std::cin >> x;
if (x.soap->error)
exit(EXIT_FAILURE); // error parsing JSON
#define USE_VAL(path, val) std::cout << path << " = " << val << std::endl
if (x.has("appDesc"))
{
if (x["appDesc"].has("description"))
USE_VAL("$.appDesc.description", x["appDesc"]["description"]);
if (x["appDesc"].has("message"))
USE_VAL("$.appDesc.message", x["appDesc"]["message"]);
}
if (x.has("appName"))
{
if (x["appName"].has("description"))
USE_VAL("$.appName.description", x["appName"]["description"]);
if (x["appName"].has("message"))
USE_VAL("$.appName.message", x["appName"]["message"]);
if (x["appName"].has("imp"))
{
for (int i2 = 0; i2 < x["appName"]["imp"].size(); i2++)
USE_VAL("$.appName.imp[]", x["appName"]["imp"][i2]);
}
}

这段代码使用了 gSOAP 2.8.28的 JSON C + + API。我并不期望人们改变库,但我认为这种比较有助于正确地看待 JSON C + + 库。

QT 下的 JSON 实际上是相当令人愉快的-我很惊讶。这是一个如何创建具有某种结构的 JSON 输出的示例。

原谅我没有解释这些字段的含义-这是一个业余无线电处理输出脚本。

这是 QT C + + 代码

void CabrilloReader::JsonOutputMapper()
{
QFile file(QDir::homePath() + "/1.json");
if(!file.open(QIODevice::ReadWrite)) {
qDebug() << "File open error";
} else {
qDebug() <<"JSONTest2 File open!";
}


// Clear the original content in the file
file.resize(0);


// Add a value using QJsonArray and write to the file
QJsonArray jsonArray;


for(int i = 0; i < 10; i++) {
QJsonObject jsonObject;
CabrilloRecord *rec= QSOs.at(i);
jsonObject.insert("Date", rec->getWhen().toString());
jsonObject.insert("Band", rec->getBand().toStr());
QJsonObject jsonSenderLatObject;
jsonSenderLatObject.insert("Lat",rec->getSender()->fLat);
jsonSenderLatObject.insert("Lon",rec->getSender()->fLon);
jsonSenderLatObject.insert("Sender",rec->getSender_call());
QJsonObject jsonReceiverLatObject;
jsonReceiverLatObject.insert("Lat",rec->getReceiver()->fLat);
jsonReceiverLatObject.insert("Lon",rec->getReceiver()->fLon);
jsonReceiverLatObject.insert("Receiver",rec->getReceiver_call());
jsonObject.insert("Receiver",jsonReceiverLatObject);
jsonObject.insert("Sender",jsonSenderLatObject);
jsonArray.append(jsonObject);
QThread::sleep(2);
}


QJsonObject jsonObject;
jsonObject.insert("number", jsonArray.size());
jsonArray.append(jsonObject);


QJsonDocument jsonDoc;
jsonDoc.setArray(jsonArray);
file.write(jsonDoc.toJson());
file.close();
qDebug() << "Write to file";
}

它接受一个内部 QT 结构(CabrilloRecord 对象的指针列表... ... 您可以忽略它)并提取一些字段。然后,这些字段以嵌套的 JSON 格式输出,如下所示。

[
{
"Band": "20",
"Date": "Sat Jul 10 12:00:00 2021",
"Receiver": {
"Lat": 36.400001525878906,
"Lon": 138.3800048828125,
"Receiver": "8N3HQ       "
},
"Sender": {
"Lat": 13,
"Lon": 122,
"Sender": "DX0HQ       "
}
},
{
"Band": "20",
"Date": "Sat Jul 10 12:01:00 2021",
"Receiver": {
"Lat": 36.400001525878906,
"Lon": 138.3800048828125,
"Receiver": "JA1CJP      "
},
"Sender": {
"Lat": 13,
"Lon": 122,
"Sender": "DX0HQ       "
}
}]

我希望这能加快其他人在这个问题上的进展。