在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; } }
|