json cpp 的简单操作

 

1、将json字符串转换成json对象
1)第一种:利用 stringstream 类
json::Value jsonobj
char* str = new char[] 
memcopy()
std::stringstream iss(str)
iss >> jsonobj


2)第二种
Json::Reader jsonReader;
jsonReader.parse(char* buf/*in*/, Json::Value json_value/*out*/)

2、将json对象转换成json字符串
Json::Value jsonValue;
Json::FastWriter fastWriter;
anchorListStr = fastWriter.write(jsonValue);

 

 

3、JsonCpp 的简单使用

 

以下为示例代码:

 

JsonCpp 是一个C++用来处理JSON 数据的开发包。下面讲一下怎么使用JsonCpp来序列化和反序列化Json对象,以实际代码为例子。

 

 

 

1)反序列化Json对象
比如一个Json对象的字符串序列如下,其中”array”:[...]表示Json对象中的数组:
{“key1″:”value1″,”array”:[{"key2":"value2"},{"key2":"value3"},{"key2":"value4"}]},那怎么分别取到key1和key2的值呢,代码如下所示:


std::string strValue = “{\”key1\”:\”value1\”,\”array\”:[{\"key2\":\"value2\"},{\"key2\":\"value3\"},{\"key2\":\"value4\"}]}”;

Json::Reader reader;
Json::Value value;

if (reader.parse(strValue, value)){
std::string out = value["key1"].asString();
std::cout << out << std::endl;
const Json::Value arrayObj = value["array"];
for (int i=0; i<arrayObj.size(); i++){
out = arrayObj[i]["key2"].asString();
std::cout << out;
if (i != arrayObj.size() – 1 )
std::cout << std::endl;
}
}

2)序列化Json对象
先构建一个Json对象,此Json对象中含有数组,然后把Json对象序列化成字符串,代码如下:
Json::Value root;
Json::Value arrayObj;
Json::Value item;
for (int i=0; i<10; i++)
{
item["key"] = i;
arrayObj.append(item);
}


root["key1"] = “value1″;
root["key2"] = “value2″;
root["array"] = arrayObj;
root.toStyledString();
std::string out = root.toStyledString();
std::cout << out << std::endl;

3)删除Json对象
std::string strContent = "{\"key\":\"1\",\"name\":\"test\"}";

Json::Reader reader;
Json::Value value;

 

 

if (reader.parse(strContent, value)){

Json::Value root=value;

root.removeMember("key");

printf("%s \n",root.toStyledString().c_str());
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值