在VS2013下编译json-c库,并简单生成json格式数据
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在VS2013下编译json-c库,并简单生成json格式数据相关的知识,希望对你有一定的参考价值。
#include "stdafx.h"
#include "json-c/json.h"
int _tmain(int argc, _TCHAR* argv[])
{
// 正常的json格式
json_object *json = json_object_new_object();
json_object_object_add(json, "name", json_object_new_string("laomeng"));
json_object_object_add(json, "email", json_object_new_string("[email protected]"));
json_object_object_add(json, "age", json_object_new_int(30));
// 产生一个json数组格式
json_object *tech = json_object_new_array();
json_object_array_add(tech, json_object_new_string("c"));
json_object_array_add(tech, json_object_new_string("c++"));
json_object_array_add(tech, json_object_new_string("php"));
json_object_object_add(json, "technology", tech);
// 数据中包含正常json格式
json_object *tech2 = json_object_new_array();
json_object *json_sub = json_object_new_object();
json_object_object_add(json_sub, "name", json_object_new_string("laomeng"));
json_object_object_add(json_sub, "email", json_object_new_string("[email protected]"));
json_object_object_add(json_sub, "age", json_object_new_int(30));
json_object_array_add(tech2, json_sub);
json_object_object_add(json, "technology2", tech2);
// 输出
const char *str = json_object_to_json_string(json);
/*
{ "name": "laomeng", "email": "[email protected]", "age": 30, "technology": [ "c", "c++", "php" ], "technology2": [ { "name": "laomeng", "email": "[email protected]", "age": 30 } ] }
*/
printf("%s\n", str);
json_object_put(json);
return 0;
}
以上是关于在VS2013下编译json-c库,并简单生成json格式数据的主要内容,如果未能解决你的问题,请参考以下文章