jsoncpp

在C++中使用json

引用自:C++ 之 C++ 操作 json 文件(C读写json文件)及jsoncpp配置详解_水亦心的博客-CSDN博客_c json

使用方法

准备工作

假设jsoncpp的库名称为jsoncpp.lib

则在源码中加入如下指令,链接库

#pragma comment(lib, "jsoncpp.lib")

把jsoncpp/include目录下单的json复制到项目然后使用或者直接引用

编写

假设有一数据文件data.json,内容如下:

1
2
3
4
5
6
7
8
9
10
11
12
13
{
"name":"shuiyixin",
"major":[
{
"AI":"MachineLearning"
},
{
"AI":"DeepLearning"
},
{
"AI":"ComputerVision"
}]
}

然后在main.cpp编写程序:

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
//...略
#pragma comment(lib, "jsoncpp.lib")
#include "json/json.h"

//...略{

Json::Reader str_reader, file_reader;
Json::Value str_root, file_root;

std::string str_json = "...";
std::ifstream file_json.open("...");

str_reader.parse(str_json, str_root);
file_reader.parse(file_json, file_root);

//然后就可以这样使用数据
if (reader.parse(strValue, value))
{
string out = value["name"].asString();
cout << out << endl;
const Json::Value arrayObj = value["major"];
for (unsigned int i = 0; i < arrayObj.size(); i++)
{
out = arrayObj[i]["AI"].asString();
cout << out<<endl;
}
}

//}略....
发布于

2021-08-21

更新于

2024-11-18

许可协议

评论

:D 一言句子获取中...

加载中,最新评论有1分钟缓存...