Linux系统下如何使⽤C++解析json⽂件详解
1. 背景
⼯作需要,下班回来⾃⼰造轮⼦,记录以后查阅。
JSON(JavaScript Object Notation) 是⼀种轻量级的数据交换格式,和xml类似,本⽂主要Linux下使⽤Jsoncpp解析json的⽅法做⼀下记录。
2. 关于jsoncpp库的使⽤简介
使⽤jsoncpp有两种⽅法
⽅法⼀:使⽤Jsoncpp⽣成的lib⽂件
解压上⾯下载的Jsoncpp⽂件,在jsoncpp默认⽣成静态链接库。在⼯程中引⽤,只需要包含include/json下的头⽂件及⽣成的.lib⽂件即可。
⽅法⼆:使⽤Jsoncpp包中的.cpp和.h⽂件
解压上⾯下载的Jsoncpp⽂件,把jsoncpp-src-0.5.0⽂件拷贝到⼯程⽬录下,将jsoncpp-src-0.5.0\jsoncpp-
src-
0.5.0\include\json和jsoncpp-src-0.5.0\jsoncpp-src-0.5.0\src\lib_json⽬录⾥的⽂件包含到VS⼯程中,在VS⼯程的属性
C/C++下General中Additional Include Directories包含头⽂件⽬录.\jsoncpp-src-0.5.0\include。在使⽤的cpp⽂件中包含json头⽂件即可,如:#include "json/json.h"。将json_reader.cpp、json_value.cpp和json_writer.cpp三个⽂件的Precompiled Header属性设置为Not Using Precompiled Headers,否则编译会出现错误。
我上⾯的都是采⽤第⼀种⽅法
jsoncpp 使⽤详解
jsoncpp 主要包含三种类型的 class:Value、Reader、Writer。jsoncpp 中所有对象、类名都在 namespace Json 中,包含json.h 即可。
Json::Value 只能处理 ANSI 类型的字符串,如果 C++ 程序是⽤ Unicode 编码的,最好加⼀个 Adapt 类来适配。
3. linux下jsoncpp环境配置
3.1 jsoncpp源码下载
3.2 具体配置步骤
1> 解压源码
2> 在源码⽬录的上⼀层新建build⽬录,⽤来保存编译过程⽣成的中间⽂件
3> 在build⽬录执⾏cmake ..
4> 在build⽬录执⾏make
5> 在build⽬录下执⾏make install
查看安装在本地的jsoncpp库
ls /usr/local/include ls/usr/local/lib
4. 使⽤c++读取json⽂件⽰例
{
"age" : 21,
"friends" : {
"friend_age" : 21,
"friend_name" : "ZhaoWuxian",
"friend_sex" : "man"
},
"hobby" : [ "sing", "run", "Tai Chi" ],
"name" : "shuiyixin",
"sex" : "man"
}
test.cpp⽂件
#include <iostream>
#include <json/json.h>
#include <fstream>
using namespace std;
void readFileJson()
{
Json::Reader reader;
Json::Value root;
//从⽂件中读取,保证当前⽂件有demo.json⽂件
ifstream in("demo.json", ios::binary);
if (!in.is_open())
{
cout << "Error opening file\n";
return;
}
if (reader.parse(in, root))
{
//读取根节点信息
string name = root["name"].asString();
int age = root["age"].asInt();
string sex = root["sex"].asString();
cout << "My name is " << name << endl;
cout << "I'm " << age << " years old" << endl;
cout << "I'm a " << sex << endl;
//读取⼦节点信息
string friend_name = root["friends"]["friend_name"].asString(); int friend_age = root["friends"]["friend_age"].asInt();
string friend_sex = root["friends"]["friend_sex"].asString();
cout << "My friend's name is " << friend_name << endl;
cout << "My friend's sex is "<<friend_sex << endl;
cout << "My friend is " << friend_age << " years old" << endl; //读取数组信息
cout << "Here's my hobby:" << endl;
for (unsigned int i = 0; i < root["hobby"].size(); i++)
{
string ach = root["hobby"][i].asString();
cout << ach << '\t';
}
cout << endl;
cout << "Reading Complete!" << endl;
}
else
{
cout << "parse error\n" << endl;
}
in.close();
}
int main(void)
{
readFileJson();
return 0;
}
执⾏结果如下:
5. 使⽤c++写⼊json⽂件⽰例
test.cpp⽂件:
#include <iostream>
#include <json/json.h>
#include <fstream>
using namespace std;
void writeFileJson()
{
//根节点
Json::Value root;
//根节点属性
root["name"] = Json::Value("shuiyixin");
root["age"] = Json::Value(21);
root["sex"] = Json::Value("man");
//⼦节点
Json::Value friends;
//⼦节点属性
friends["friend_name"] = Json::Value("ZhaoWuxian");
friends["friend_age"] = Json::Value(21);
friends["friend_sex"] = Json::Value("man");
//⼦节点挂到根节点上
root["friends"] = Json::Value(friends);
//数组形式
root["hobby"].append("sing");
root["hobby"].append("run");
root["hobby"].append("Tai Chi");
/
/直接输出
//cout << "FastWriter:" << endl;
//Json::FastWriter fw;
//cout << fw.write(root) << endl << endl;
//缩进输出
cout << "StyledWriter:" << endl;
Json::StyledWriter sw;
cout << sw.write(root) << endl << endl;
//输出到⽂件
ofstream os;
os.open("demo.json", std::ios::out | std::ios::app);
if (!os.is_open())
cout << "error:can not find or create the file which named \" demo.json\"." << endl;
os << sw.write(root);
os.close();
}
int main(void)
{
writeFileJson();
return 0;
}
执⾏结果如下:可以看到已经在⽬录新建了demo.json⽂件,并且写⼊成功
要注意的是:
1.如果要写⼊的⽂件不存在,会⾃动创建该⽂件;
2.如果⽂件存在,写⼊过程不会覆盖⽂件中原有数据,⽽是将新数据写在原有数据后⾯。
6. 从字符串解析json
在实际项⽬中更多使⽤的是从⽂件解析json,从字符串解析json⽰例只是为了完整记录。
6.1 简单json样式字符串解析⽰例
#include <iostream>
#include <json/json.h>
#include <fstream>
using namespace std;
void readStrJson()
{
//字符串
const char* str =
"{\"name\":\"shuiyixin\",\"age\":\"21\",\"sex\":\"man\"}";
// "{
// "name" : "shuiyixin",
// "age" : "21",
// "sex" : "man"
// }";
Json::Reader reader;
Json::Value root;
/
/从字符串中读取数据
if (reader.parse(str, root))
{
string name = root["name"].asString();
int age = root["nomen"].asInt();
string sex = root["sex"].asString();
cout << name + "," << age << "," << sex << endl;
}
}
int main(void)
{
readStrJson();
return 0;
cmake如何使用}
执⾏结果如下:
6.2 复杂json样式字符串解析⽰例
#include <iostream>
#include <json/json.h>
#include <fstream>
using namespace std;
void readStrProJson()
{
string strValue = "{\"name\":\"shuiyixin\",\"major\":[{\"AI\":\"MachineLearning\"},{\"AI\":\"DeepLearning\"},{\"AI\":\"ComputerVision\"}]}"; /*
{
"name":"shuiyixin",
"major":[
{
"AI":"MachineLearning"
},
{
"AI":"DeepLearning"
},
{
"AI":"ComputerVision"
}]
}
*/
Json::Reader reader;
Json::Value value;
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;
}
}
}
int main(void)
{
readStrProJson();
return 0;
}
执⾏结果如下:
参看连接:
总结
到此这篇关于Linux系统下如何使⽤C++解析json⽂件的⽂章就介绍到这了,更多相关Linux C++解析json⽂件内容请搜索以前的⽂章或继续浏览下⾯的相关⽂章希望⼤家以后多多⽀持!
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论