-
Notifications
You must be signed in to change notification settings - Fork 363
/
ParseJson.h
40 lines (33 loc) · 1000 Bytes
/
ParseJson.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#ifndef PARSEJSON_H
#define PARSEJSON_H
//JSON是一种存储结构化数据的格式,具有六种基本数据类型:
//bool、double、string、array、object、null
//QJsonDocument在core模块
//参考:
//http://blog.sina.com.cn/s/blog_a6fb6cc90101gnxm.html
//https://www.cnblogs.com/lifan3a/articles/7811434.html
//https://doc.qt.io/qt-5/json.html
#include <QObject>
#include <QJsonDocument>
#include <QJsonParseError>
#include <QJsonArray>
#include <QJsonObject>
#include <QJsonValue>
class ParseJson : public QObject
{
Q_OBJECT
public:
ParseJson(QObject *parent=nullptr);
// 加载Json文件
bool loadJson(const QString &filepath);
// 导出Json文件
bool dumpJson(const QString &filepath);
private:
// 加载Json时解析Object
void parseObject(const QJsonObject& obj);
// 加载Json时解析Array
void parseArray(const QJsonArray& arr);
// 加载Json时解析Value
void parseValue(const QJsonValue& val);
};
#endif // PARSEJSON_H