目录
前言
觉得有帮助请点赞收藏不迷路,谢谢各位.
一、Json是什么?
1.概念:
JSON(全称:JavaScript Object Notation),是一种轻量级的数据交换格式。它是 JavaScript 中用于描述对象数据的语法的扩展。不过并不限于与 JavaScript 一起使用。它采用完全独立于语言的文本格式,这些特性使 JSON 成为理想的数据交换格式。
一般以.json为后缀
2.使用场景:
组织数据:用于数据的网络传输
组织数据:用于磁盘文件实现数据的持久化存储
用在登录 记录用户名密码等,下次打开软件,自动填充。
3.结构和语法:
json语法错误:
-
始终将键值对保存在双引号内,大多数 JSON 解析器使用双引号解析 JSON 对象;
-
切勿在 key 中使用连字符。而是使用下划线 (_)、全部小写或驼峰式大小写;
-
使用 JSON linter 来检查 JSON 是有效的,可以使用 JSONLint 等工具进行校验
Json数组使用[]表示,[]里面是元素,元素间使用 ”,“分隔,最后一个元素后面,没有 ,
一个Json数组,支持多种不同的数据类型,包括:整形,浮点型,字符串(string),json数组,json对象,空值-null(null)
Json数组中嵌套Json数组,父子关系
Json数组嵌套Json对象,Json对象可以嵌套Json数组
数组内元素类型一致
[1, 2, 3]
["哈哈","hehe","yiyi"]
数组内元素类型不一致
[1, 2, 3, true, false, "haha",null]
Json数组和Json对象嵌套
[//外层是Json数组
{//内层是Json对象
"小明":{//属于键值对
"age":19,
"father":"大华",
"sister":"小妹"
}
}
]
Json数组嵌套Json数组
[
["cat", "狗狗", "河马", 1]//元素类型可以不一致
[1, 3, 5, true]
]
Json对象
Json对象使用{ }来描述,每个Json对象可以存储若干个元素,每个元素以键值对(key:value)的形式存在,元素与元素之间采用","隔开,最后一个元素没有,
注意:
1.键值key必须是字符串,且同一层的键值不能重复。
2.value值的类型可选:整形,浮点型,字符串,json数组,json对象,空值-null(null)
3.不能乱加否则解析会出错,键值不唯一将不能搜到正确的value
Json描述一个人的信息:
{
"NAME":"ACE",
"Sex":"man",
"Age":20,
"Family":{
"Father":"yiyi",
"brother":["aa","bb","cc"]
},
"IsLive":"true"
}
4.在一个.json文件中:只能有一个Json数组、只能有一个Json对象
二、在Qt中实现Json操作的类
使用到以下五个类:
1.QJsonValue:(Json值)
该类封装了Json支持的数据类型
//构造函数
QJsonValue(Type type = Null) //初始化一个空值
QJsonValue(bool b) //初始化一个bool值
QJsonValue(double n) //初始化一个double 值
QJsonValue(int n) //初始化一个int
QJsonValue(qint64 n)
QJsonValue(const QString &s) //QString初始化
QJsonValue(const char *s) //字符串常量初始化
QJsonValue(const QJsonArray &a) //JsonArray初始化
QJsonValue(const QJsonObject &o) //JsonObject初始化
//公共函数
//判断函数
bool isArray() const //判断value是否是array
bool isBool() const //判断是否是bool
bool isDouble() const //判断是否是double
bool isNull() const //判断是否是空
bool isObject() const //判断是否是对象
bool isString() const //判断是否是string
bool isUndefined() const //判断是否未定义
//转换函数
QJsonArray toArray(const QJsonArray &defaultValue) const //转换为array
QJsonArray toArray() const //转换成array
bool toBool(bool defaultValue = false) const
double toDouble(double defaultValue = 0) const
int toInt(int defaultValue = 0) const
QJsonObject toObject(const QJsonObject &defaultValue) const
QJsonObject toObject() const
QString toString() const
QString toString(const QString &defaultValue) const
QVariant toVariant() const
Type type() const
bool operator!=(const QJsonValue &other) const
QJsonValue &operator=(const QJsonValue &other)
bool operator==(const QJsonValue &other) const
2.QJsonArray:(Json数组)
Json数组是一个值列表。可以通过从数组中插入和删除QJsonValue来操作该列表
//构造函数
QJsonArray()
QJsonArray(std::initializer_list<QJsonValue> args)
QJsonArray(const QJsonArray &other)
//公共函数
void append(const QJsonValue &value)// 在数组尾部插入值
QJsonValue at(int i) const
iterator begin()
const_iterator begin() const
const_iterator constBegin() const
const_iterator constEnd() const
bool contains(const QJsonValue &value) const
int count() const
bool empty() const
iterator end()
const_iterator end() const
iterator erase(iterator it)
QJsonValue first() const
void insert(int i, const QJsonValue &value)
iterator insert(iterator before, const QJsonValue &value)
bool isEmpty() const
QJsonValue last() const
void pop_back()
void pop_front()
void prepend(const QJsonValue &value)
void push_back(const QJsonValue &value)
void push_front(const QJsonValue &value)
void removeAt(int i)
void removeFirst()
void removeLast()
void replace(int i, const QJsonValue &value)
int size() const
QJsonValue takeAt(int i)
QVariantList toVariantList() const
//静态函数
QJsonArray fromStringList(const QStringList &list)
QJsonArray fromVariantList(const QVariantList &list)
3.QJsonObject:(Json对象)
Json对象是键值对的列表,其中键值是唯一的字符串,值由QJsonValue表示
//构造函数
QJsonObject()
QJsonObject(std::initializer_list<QPair<QString, QJsonValue> > args)
QJsonObject(const QJsonObject &other)
//公共函数
iterator begin()
const_iterator begin() const
const_iterator constBegin() const
const_iterator constEnd() const
const_iterator constFind(const QString &key) const
const_iterator constFind(QLatin1String key) const
bool contains(const QString &key) const
bool contains(QLatin1String key) const
int count() const
bool empty() const
iterator end()
const_iterator end() const
iterator erase(iterator it)
iterator find(const QString &key)
iterator find(QLatin1String key)
const_iterator find(const QString &key) const
const_iterator find(QLatin1String key) const
iterator insert(const QString &key, const QJsonValue &value)
bool isEmpty() const
QStringList keys() const
int length() const
void remove(const QString &key)
int size() const
QJsonValue take(const QString &key)
QVariantHash toVariantHash() const
QVariantMap toVariantMap() const
QJsonValue value(const QString &key) const
QJsonValue value(QLatin1String key) const
bool operator!=(const QJsonObject &other) const
QJsonObject &operator=(const QJsonObject &other)
bool operator==(const QJsonObject &other) const
QJsonValue operator[](const QString &key) const
QJsonValue operator[](QLatin1String key) const
QJsonValueRef operator[](const QString &key)
QJsonValueRef operator[](QLatin1String key)
//静态函数
QJsonObject fromVariantHash(const QVariantHash &hash)
QJsonObject fromVariantMap(const QVariantMap &map)
4.QJsonDocument:(桥梁,转换器作用)
它封装了一个完整的Json文档,并且可以从UTF-8编码的基于文本的表示以及Qt自己的读取和写入该文档
//构造函数
QJsonDocument()
QJsonDocument(const QJsonObject &object) //用QJsonObject初始化
QJsonDocument(const QJsonArray &array) //用qjsonArray初始化
QJsonDocument(const QJsonDocument &other) //复制构造函数
~QJsonDocument()
QJsonArray array() const //转换为QJsonArray
//公共函数
//判断函数
bool isArray() const
bool isEmpty() const
bool isNull() const
bool isObject() const
//转换函数
QJsonObject object() const // 转换为QJsonObject
const char *rawData(int *size) const
void setArray(const QJsonArray &array)
void setObject(const QJsonObject &object)
QByteArray toBinaryData() const //转换为二进制数据
QByteArray toJson(JsonFormat format = Indented) const //转换为文本文件
QVariant toVariant() const
bool operator!=(const QJsonDocument &other) const
QJsonDocument &operator=(const QJsonDocument &other)
bool operator==(const QJsonDocument &other) const
//静态函数
QJsonDocument fromBinaryData(const QByteArray &data, DataValidation validation = Validate) //从二进制文件中读取数据
QJsonDocument fromJson(const QByteArray &json, QJsonParseError *error = Q_NULLPTR)//从Json文件中读取数据
QJsonDocument fromRawData(const char *data, int size, DataValidation validation = Validate)
QJsonDocument fromVariant(const QVariant &variant)
5.QJsonParseError:(Json错误)
用于报告JSON解析期间的错误
//公共函数
QString errorString() const //Returns the human-readable message appropriate to the reported JSON parsing error.
三、在Qt中实现Json操作的示例
#include <QCoreApplication>
#include<QJsonValue>
#include<QJsonObject>
#include<QJsonArray>
#include<QDebug>
#include<iostream>
#include<QJsonDocument>
#include<QFile>
#include<QSettings>
using namespace std;
int number; //全局变量,记录文件名后缀
QSettings settings("./config.ini",QSettings::IniFormat); //配置文件ini
void WriteJson();//写文件
void ReadJson();//读文件
void RecordNumber();//通过配置文件config.ini获取当前的number值
int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
RecordNumber();
WriteJson();
system("pause");
return a.exec();
}
void RecordNumber(){
number=settings.value("number").toUInt();//通过配置文件config.ini获取当前的number值
}
void WriteJson(){
QJsonObject obj;//json对象
//json对象插入值,按照红黑树排序
obj.insert("Name","Ace");
obj.insert("Sex","man");
obj.insert("Age",20);
QJsonObject subObj;//json对象
subObj.insert("Father","Gol·D·Roger");
subObj.insert("Mother","Portgas·D·Rouge");
QJsonArray array;//json数组
array.append("Sabo");
array.append("Monkey D. Luffy");
//在json对象中嵌套数组
subObj.insert("Brother",array);
//在json对象中嵌套json对象
obj.insert("Family",subObj);
obj.insert("IsAlive",false);
obj.insert("comment","yyds");
QJsonObject objstart;
objstart.insert("all",obj);//在json对象中嵌套对象
objstart.insert("format","json");
QJsonDocument doc(objstart);//将json对象转换为jsonDocument
QByteArray json=doc.toJson();//转换为json文件
QFile file(QString::asprintf("C:\\Users\\Administrator\\Desktop\\ace%d.json",number++));//创建json文件
settings.setValue("number",number);//配置文件中的number值++
file.open(QIODevice::WriteOnly|QIODevice::Text);
file.write(json,json.length());//将json字节数组写到文件 当中
file.close(); //关闭文件
}
void ReadJson(){
}
得到如下的json文件:
总结
在保存json文件时候,json与文件沟通的桥梁QJsonDocument,将json数据转换为QByteArray(即字节数组),然后保存到.json文件当中。