cJSON官网是:http://sourceforge.net/projects/cjson/?source=recommended

最新版本是2013年的,与2009年的变化不是很大。

看了代码,觉得挺好,只是是C语言的,不够好。

就改良了一下,内存自己管理。使用std::string

http://files.cnblogs.com/ayanmw/cJSON_cpp_myversion.zip

使用起来如下:

#include <stdio.h>
#include <stdlib.h>
#include "cJSON.h" #define PS(V) printf(#V"=%s\n",V);
#define PI(V) printf(#V"=%d\n",V);
#define PF(V) printf(#V"=%f\n",V); int main (int argc, const char * argv[]) {
AddStack(__FUNCTION__); const char * myjson="{\"name\":\"value\",\"jsonobject\":{\"int\":5,\"true\":true,\"false\":false,\"null\":null},\"jsonarray\":[\"array1\",\"array2\",12,true,false,null,\"12\",-1.2]}";
cJSON * jsonroot =new cJSON();
if(==jsonroot->cJSON_Parse(myjson))
printf("Error to cJSON_Parse :%s %x\n",jsonroot->cJSON_GetErrorPtr(),jsonroot->cJSON_GetErrorPtr());
else{
const char * out=jsonroot->cJSON_Print( ).c_str();
printf("myjson=%s\n",out);
PS(jsonroot->toString().c_str());
const char * value=jsonroot->cJSON_GetString( "name").c_str();
PS(value); cJSON *jsonobject=jsonroot->cJSON_GetObjectItem( "jsonobject");
PS(jsonroot->cJSON_GetString("jsonobject").c_str());
PS(jsonobject->toString().c_str()); PS(jsonobject->cJSON_GetString("null").c_str());
PS(jsonobject->cJSON_GetString("int").c_str());
PS(jsonobject->cJSON_GetString("true").c_str()); PI(jsonobject->cJSON_GetInt("int") );
PI(jsonobject->cJSON_GetBoolean("true"));
PI( jsonobject->cJSON_GetBoolean("false") ); cJSON *jsonarray=jsonroot->cJSON_GetObjectItem("jsonarray");
PS(jsonroot->cJSON_GetString("jsonarray").c_str());
PS(jsonarray->toString().c_str()); PI( jsonroot->cJSON_GetArraySize( ) );
PI( jsonobject->cJSON_GetArraySize( ) );
PI(jsonarray->cJSON_GetArraySize( )); cJSON *arrayitem=jsonarray->cJSON_GetArrayItem( );
PS(arrayitem->valuestring);
}
PS("END Mark");
delete jsonroot;
return ;
}

toString()可以轻松获取到json的内容信息。以上是解析的。

生成json可以看cJSON的test.c 文件。

#include <stdio.h>
#include <stdlib.h>
#include "cJSON.h" /* Parse text to JSON, then render back to text, and print! */
void doit(char *text)
{
char *out;cJSON *json; json=cJSON_Parse(text);
if (!json) {printf("Error before: [%s]\n",cJSON_GetErrorPtr());}
else
{
out=cJSON_Print(json);
cJSON_Delete(json);
printf("%s\n",out);
free(out);
}
} /* Read a file, parse, render back, etc. */
void dofile(char *filename)
{
FILE *f=fopen(filename,"rb");fseek(f,,SEEK_END);long len=ftell(f);fseek(f,,SEEK_SET);
char *data=(char*)malloc(len+);fread(data,,len,f);fclose(f);
doit(data);
free(data);
} /* Used by some code below as an example datatype. */
struct record {const char *precision;double lat,lon;const char *address,*city,*state,*zip,*country; }; /* Create a bunch of objects as demonstration. */
void create_objects()
{
cJSON *root,*fmt,*img,*thm,*fld;char *out;int i; /* declare a few. */ /* Here we construct some JSON standards, from the JSON site. */ /* Our "Video" datatype: */
root=cJSON_CreateObject();
cJSON_AddItemToObject(root, "name", cJSON_CreateString("Jack (\"Bee\") Nimble"));
cJSON_AddItemToObject(root, "format", fmt=cJSON_CreateObject());
cJSON_AddStringToObject(fmt,"type", "rect");
cJSON_AddNumberToObject(fmt,"width", );
cJSON_AddNumberToObject(fmt,"height", );
cJSON_AddFalseToObject (fmt,"interlace");
cJSON_AddNumberToObject(fmt,"frame rate", ); out=cJSON_Print(root); cJSON_Delete(root); printf("%s\n",out); free(out); /* Print to text, Delete the cJSON, print it, release the string. */ /* Our "days of the week" array: */
const char *strings[]={"Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"};
root=cJSON_CreateStringArray(strings,); out=cJSON_Print(root); cJSON_Delete(root); printf("%s\n",out); free(out); /* Our matrix: */
int numbers[][]={{,-,},{,,},{,,}};
root=cJSON_CreateArray();
for (i=;i<;i++) cJSON_AddItemToArray(root,cJSON_CreateIntArray(numbers[i],)); /* cJSON_ReplaceItemInArray(root,1,cJSON_CreateString("Replacement")); */ out=cJSON_Print(root); cJSON_Delete(root); printf("%s\n",out); free(out); /* Our "gallery" item: */
int ids[]={,,,};
root=cJSON_CreateObject();
cJSON_AddItemToObject(root, "Image", img=cJSON_CreateObject());
cJSON_AddNumberToObject(img,"Width",);
cJSON_AddNumberToObject(img,"Height",);
cJSON_AddStringToObject(img,"Title","View from 15th Floor");
cJSON_AddItemToObject(img, "Thumbnail", thm=cJSON_CreateObject());
cJSON_AddStringToObject(thm, "Url", "http:/*www.example.com/image/481989943");
cJSON_AddNumberToObject(thm,"Height",);
cJSON_AddStringToObject(thm,"Width","");
cJSON_AddItemToObject(img,"IDs", cJSON_CreateIntArray(ids,)); out=cJSON_Print(root); cJSON_Delete(root); printf("%s\n",out); free(out); /* Our array of "records": */
struct record fields[]={
{"zip",37.7668,-1.223959e+2,"","SAN FRANCISCO","CA","","US"},
{"zip",37.371991,-1.22026e+2,"","SUNNYVALE","CA","","US"}}; root=cJSON_CreateArray();
for (i=;i<;i++)
{
cJSON_AddItemToArray(root,fld=cJSON_CreateObject());
cJSON_AddStringToObject(fld, "precision", fields[i].precision);
cJSON_AddNumberToObject(fld, "Latitude", fields[i].lat);
cJSON_AddNumberToObject(fld, "Longitude", fields[i].lon);
cJSON_AddStringToObject(fld, "Address", fields[i].address);
cJSON_AddStringToObject(fld, "City", fields[i].city);
cJSON_AddStringToObject(fld, "State", fields[i].state);
cJSON_AddStringToObject(fld, "Zip", fields[i].zip);
cJSON_AddStringToObject(fld, "Country", fields[i].country);
} /* cJSON_ReplaceItemInObject(cJSON_GetArrayItem(root,1),"City",cJSON_CreateIntArray(ids,4)); */ out=cJSON_Print(root); cJSON_Delete(root); printf("%s\n",out); free(out); } int main (int argc, const char * argv[]) {
/* a bunch of json: */
char text1[]="{\n\"name\": \"Jack (\\\"Bee\\\") Nimble\", \n\"format\": {\"type\": \"rect\", \n\"width\": 1920, \n\"height\": 1080, \n\"interlace\": false,\"frame rate\": 24\n}\n}";
char text2[]="[\"Sunday\", \"Monday\", \"Tuesday\", \"Wednesday\", \"Thursday\", \"Friday\", \"Saturday\"]";
char text3[]="[\n [0, -1, 0],\n [1, 0, 0],\n [0, 0, 1]\n ]\n";
char text4[]="{\n \"Image\": {\n \"Width\": 800,\n \"Height\": 600,\n \"Title\": \"View from 15th Floor\",\n \"Thumbnail\": {\n \"Url\": \"http:/*www.example.com/image/481989943\",\n \"Height\": 125,\n \"Width\": \"100\"\n },\n \"IDs\": [116, 943, 234, 38793]\n }\n }";
char text5[]="[\n {\n \"precision\": \"zip\",\n \"Latitude\": 37.7668,\n \"Longitude\": -122.3959,\n \"Address\": \"\",\n \"City\": \"SAN FRANCISCO\",\n \"State\": \"CA\",\n \"Zip\": \"94107\",\n \"Country\": \"US\"\n },\n {\n \"precision\": \"zip\",\n \"Latitude\": 37.371991,\n \"Longitude\": -122.026020,\n \"Address\": \"\",\n \"City\": \"SUNNYVALE\",\n \"State\": \"CA\",\n \"Zip\": \"94085\",\n \"Country\": \"US\"\n }\n ]"; /* Process each json textblock by parsing, then rebuilding: */
doit(text1);
doit(text2);
doit(text3);
doit(text4);
doit(text5); /* Parse standard testfiles: */
/* dofile("../../tests/test1"); */
/* dofile("../../tests/test2"); */
/* dofile("../../tests/test3"); */
/* dofile("../../tests/test4"); */
/* dofile("../../tests/test5"); */ /* Now some samplecode for building objects concisely: */
create_objects(); return ;
}

感觉比jsoncpp 代码简洁。算法看起来都是简单精炼的。很好的。

c++ 使用json的库。cJSON的更多相关文章

  1. python 中的json解析库

    当一个json 数据很大的时候.load起来是很耗时的.python中常见的json解析库有cjson,simplesjson,json, 初步比较了一下, 对于loads来讲 simplejson ...

  2. Tomjson - 一个"短小精悍"的 json 解析库

    Tomjson,一个"短小精悍"的 json 解析库,tomjson使用Java语言编写,主要作用是把Java对象(JavaBean)序列化为json格式字符串,将json格式字符 ...

  3. fastjson是阿里巴巴的开源JSON解析库

    fastjson的API十分简洁. String text = JSON.toJSONString(obj); //序列化 VO vo = JSON.parseObject("{...}&q ...

  4. Tomjson - json 解析库

    Tomjson - 一个"短小精悍"的 json 解析库 Tomjson,一个"短小精悍"的 json 解析库,tomjson使用Java语言编写,主要作用是把 ...

  5. Delphi语言最好的JSON代码库 mORMot学习笔记1

    mORMot没有控件安装,直接添加到lib路径,工程中直接添加syncommons,syndb等到uses里 --------------------------------------------- ...

  6. C++的Json解析库:jsoncpp和boost

    C++的Json解析库:jsoncpp和boost - hzyong_c的专栏 - 博客频道 - CSDN.NET C++的Json解析库:jsoncpp和boost 分类: 网络编程 开源库 201 ...

  7. Java JSON处理库Jackson

    Jackson是一款为Java平台提供的一套数据处理类库工具,Jackson的主要功能是提供JSON解析和生成.另外,Jackson还提供额外的类库以支持处理Avro, CBOR, CSV, Smil ...

  8. Android JSON解析库Gson和Fast-json的使用对比和图书列表小案例

    Android JSON解析库Gson和Fast-json的使用对比和图书列表小案例 继上篇json解析,我用了原生的json解析,但是在有些情况下我们不得不承认,一些优秀的json解析框架确实十分的 ...

  9. C++的Json解析库:jsoncpp和boost(转)

    原文转自 http://blog.csdn.net/hzyong_c/article/details/7163589 JSON(JavaScript Object Notation)跟xml一样也是一 ...

随机推荐

  1. 003.NFS配置实例

    一 NFS常见服务管理 1.1 启动NFS [root@imxhy ~]# systemctl start nfs #CentOS7.x系列启动 [root@imxhy ~]# service nfs ...

  2. 送你一套纯净版的 SSM 架构

    大致介绍一下,目前 Java 中使用比较多的框架组合就是 Spring .Springmvc .Mybatis ,这 3 个框架也就是我们常说的 SSM. 前面陆陆续续也已经介绍完了这 3 个框架,今 ...

  3. SmartSVN11 Mac版 注册码序列号

    Name=apipostAddress=1337 iNViSiBLE Str.Email=3257132998@qq.comFreeUpdatesUntil=2099-09-26LicenseCoun ...

  4. HashMap分析 + 哈希表

    http://www.cnblogs.com/hzmark/archive/2012/12/24/HashMap.html http://www.cnblogs.com/xqzt/archive/20 ...

  5. ABP-Zero模块

    一.介绍 二.启动模版 三.功能 1,租户管理 2,版本管理 3,用户管理 4,角色管理 5,组织单位管理 6,权限管理 7,语言管理 8,Identity Server集成 一.介绍 1,Zero模 ...

  6. 【HDU 3590】 PP and QQ (博弈-Anti-SG游戏,SJ定理,树上删边游戏)

    PP and QQ Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)Total S ...

  7. hdu 4452 37届金华赛区 K题

    题意:给一个n*n的格子,1在左上角,2在右下角,每个人有一个初始速度和方向,若遇到边缘,则朝相反方向前进,若两个人相遇则交换方向(注意方向改变后,人仍然需要移动),同时,每个人每过t1,t2时间就会 ...

  8. 用runtime来重写Coder和deCode方法 归档解档的时候使用

    当我们归档自定义对象的时候,可以重写自定义Model的的encodeWithCoder和initWithCoder 开始的大概是这样的,当属性非常多的时候 这种方式就会觉得不还好 好像重复在做一样的事 ...

  9. java自动给版本升级,遇9变0且前面一个版本加1

    /** * 自动升级版本号,版本号+1 * @param version * @return */ private String autoUpgradeVersion(String version){ ...

  10. 如何调整word中表格某一列占半分比

    1.可以拖动,但是不准确 2.