jsoncpp 使用详解:
转载:使用 c 处理 json 数据交换格式
jsoncpp 使用详解
jsoncpp 主要包含三种类型的 class:value、reader、writer。jsoncpp 中所有对象、类名都在 namespace json 中,包含 json.h 即可。
json::value 只能处理 ansi 类型的字符串,如果 c 程序是用 unicode 编码的,最好加一个 adapt 类来适配。
1、value
json::value 是jsoncpp 中最基本、最重要的类,用于表示各种类型的对象,jsoncpp 支持的对象类型可见 json::valuetype 枚举值。
可如下是用 json::value 类:
json::value json_temp; // 临时对象,供如下代码使用
json_temp["name"] = json::value("huchao");
json_temp["age"] = json::value(26);
json::value root; // 表示整个 json 对象
root["key_string"] = json::value("value_string"); // 新建一个 key(名为:key_string),赋予字符串值:"value_string"。
root["key_number"] = json::value(12345); // 新建一个 key(名为:key_number),赋予数值:12345。
root["key_boolean"] = json::value(false); // 新建一个 key(名为:key_boolean),赋予bool值:false。
root["key_double"] = json::value(12.345); // 新建一个 key(名为:key_double),赋予 double 值:12.345。
root["key_object"] = json_temp; // 新建一个 key(名为:key_object),赋予 json::value 对象值。
root["key_array"].append("array_string"); // 新建一个 key(名为:key_array),类型为数组,对第一个元素赋值为字符串:"array_string"。
root["key_array"].append(1234); // 为数组 key_array 赋值,对第二个元素赋值为:1234。
json::valuetype type = root.type(); // 获得 root 的类型,此处为 objectvalue 类型。
注:跟c 不同,javascript 数组可以为任意类型的值,所以 jsoncpp 也可以。
如上几个用法已经可以满足绝大部分 json 应用了,当然 jsoncpp 还有一些其他同能,比如说设置注释、比较 json 大小、交换 json 对象等,都很容易使用,大家自己尝试吧。
2、writer
如上说了 json::value 的使用方式,现在到了该查看刚才赋值内容的时候了,查看 json 内容,使用 writer 类即可。
jsoncpp 的 json::writer 类是一个纯虚类,并不能直接使用。在此我们使用 json::writer 的子类:json::fastwriter、json::styledwriter、json::styledstreamwriter。
顾名思义,用 json::fastwriter 来处理 json 应该是最快的,下面我们来试试。
json::fastwriter fast_writer;
std::cout << fast_writer.write(root) << std::endl;
输出结果为:
{
"key_array":["array_string",1234],"key_boolean":false,"key_double":12.3450,"key_number":12345,"key_object":{
"age":26,"name":"huchao"},"key_string":"value_string"}
再次顾名思义,用 json::styledwriter 是格式化后的 json,下面我们来看看 json::styledwriter 是怎样格式化的。
json::styledwriter styled_writer;
std::cout << styled_writer.write(root) << std::endl;
输出结果为:
{
"key_array" : [ "array_string", 1234 ],
"key_boolean" : false,
"key_double" : 12.3450,
"key_number" : 12345,
"key_object" : {
"age" : 26,
"name" : "huchao"
},
"key_string" : "value_string"
}
3、reader
json::reader 是用于读取的,说的确切点,是用于将字符串转换为 json::value 对象的,下面我们来看个简单的例子。
json::reader reader;
json::value json_object;
const char* json_document = "{/"age/" : 26,/"name/" : /"huchao/"}";
if (!reader.parse(json_document, json_object))
return 0;
std::cout << json_object["name"] << std::endl;
std::cout << json_object["age"] << std::endl;
输出结果为:
"huchao"
json::value fcgiretdata;
fcgiretdata["name"] = json::value("shark");//fcgiretdata["name"] = "string";
fcgiretdata["age"] = 100;
fcgiretdata["msg"] = json::value(0);//fcgiretdata["msg"] = "null"
json::styledwriter tret;
std::cout << tret.write(json_ret) << std::endl;
json::value fcgiretdata;
...//获取到fcgiretdata数据
json::styledwriter styledwriter;
string response = styledwriter.write(fcgiretdata);//将fcgiretdata的json数据格式化
转载:c 解析json格式数据
1:封装json数据为string
std::string datatojson()
{
json::fastwriter writerinfo;
json::value writevalueinfo;
writevalueinfo["id"]=123;
writevalueinfo["time"]="2017.08.30 00:00:00";
json::value writedata;
writedata["count"] = 1;
writedata["name"] = "cpp";
writevalueinfo["data"]=writedata;
std::string stremail = writerinfo.write(writevalueinfo);
return stremail;
}
示例json:
{
"data": {
"count": 1,
"name": "cpp"
},
"id": 123,
"time": "2017.08.30 00:00:00"
}
解析json数据
void translatejson(const string strdata)
{
// 解析json用json::reader
json::reader *readerinfo = new json::reader(json::features::strictmode());
// json::value是一种很重要的类型,可以代表任意类型。如int, string, object, array...
json::value root;
if (readerinfo->parse(strdata, root))
{
if (root["id"].isint())
{
int nid = root["id"].asint();
}
if (root["time"].isstring())
{
std::string strtime = root["time"].asstring();
}
if (root["data"]["count"].isint())
{
int ndatacount = root["data"]["count"].asint();
}
if (root["data"]["name"].isstring())
{
std::string strdataname = root["data"]["name"].asstring();
}
}
::delete readerinfo;
readerinfo = null;
}
2:json数组操作
封装:
json::value arrayobj; // 构建对象
for (int i = 0; i < 3; i )
{
json::value new_item;
new_item["id"] = i;
new_item["name"] = "test";
arrayobj.append(new_item); // 插入数组成员
}
示例json:
[
{
"id": 0,
"name": "test"
},{
"id": 1,
"name": "test"
},
{
"id": 2,
"name": "test"
}
]
arrayobj.append(new_item); 改为 arrayobj["array"].append(new_item);
示例json:
{
"array": [
{
"id": 0,
"name": "test"
},
{
"id": 1,
"name": "test"
},
{
"id": 2,
"name": "test"
}
]
}
解析:
void translatejson(const string strdata)
{
// 解析json用json::reader
json::reader *readerinfo = new json::reader(json::features::strictmode());
// json::value是一种很重要的类型,可以代表任意类型。如int, string, object, array...
json::value root;
if (readerinfo->parse(strdata, root))
{
//arrayobj.append(new_item);
if (root.isarray())
{
int narraysize = root.size();
for (int i=0; i