利用JsonCpp读Json 文件
①待读取的json文件
②程序:
读比写更简单
#include <iostream>
#include<json/json.h>
#include<fstream>
using namespace std;
using namespace Json;
int main()
{
fstream fs("write.json",ios::in);
if(!fs)
cout<<"error!"<<endl;
Value obj_root;
Reader read_fs;
if(read_fs.parse(fs,obj_root))
{
for(int i=0;i<obj_root["Group1"].size();i++)
{
cout<<obj_root["Group1"][i]["name"]<<"\t:"<<obj_root["Group1"][i]["weapon"].asString()<<"\t"<<obj_root["Group1"][i]["age"].asInt()<<endl;
}
for(int j=0;j<obj_root["Group2"].size();j++)
{
cout<<obj_root["Group2"][j]["name"]<<"\t:"<<obj_root["Group2"][j]["weapon"].asString()<<"\t"<<obj_root["Group2"][j]["age"].asInt()<<endl;
}
}
return 0;
}
③效果: