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

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

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

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

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

使用起来如下:

  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include "cJSON.h"
  4.  
  5. #define PS(V) printf(#V"=%s\n",V);
  6. #define PI(V) printf(#V"=%d\n",V);
  7. #define PF(V) printf(#V"=%f\n",V);
  8.  
  9. int main (int argc, const char * argv[]) {
  10. AddStack(__FUNCTION__);
  11.  
  12. const char * myjson="{\"name\":\"value\",\"jsonobject\":{\"int\":5,\"true\":true,\"false\":false,\"null\":null},\"jsonarray\":[\"array1\",\"array2\",12,true,false,null,\"12\",-1.2]}";
  13. cJSON * jsonroot =new cJSON();
  14. if(==jsonroot->cJSON_Parse(myjson))
  15. printf("Error to cJSON_Parse :%s %x\n",jsonroot->cJSON_GetErrorPtr(),jsonroot->cJSON_GetErrorPtr());
  16. else{
  17. const char * out=jsonroot->cJSON_Print( ).c_str();
  18. printf("myjson=%s\n",out);
  19. PS(jsonroot->toString().c_str());
  20. const char * value=jsonroot->cJSON_GetString( "name").c_str();
  21. PS(value);
  22.  
  23. cJSON *jsonobject=jsonroot->cJSON_GetObjectItem( "jsonobject");
  24. PS(jsonroot->cJSON_GetString("jsonobject").c_str());
  25. PS(jsonobject->toString().c_str());
  26.  
  27. PS(jsonobject->cJSON_GetString("null").c_str());
  28. PS(jsonobject->cJSON_GetString("int").c_str());
  29. PS(jsonobject->cJSON_GetString("true").c_str());
  30.  
  31. PI(jsonobject->cJSON_GetInt("int") );
  32. PI(jsonobject->cJSON_GetBoolean("true"));
  33. PI( jsonobject->cJSON_GetBoolean("false") );
  34.  
  35. cJSON *jsonarray=jsonroot->cJSON_GetObjectItem("jsonarray");
  36. PS(jsonroot->cJSON_GetString("jsonarray").c_str());
  37. PS(jsonarray->toString().c_str());
  38.  
  39. PI( jsonroot->cJSON_GetArraySize( ) );
  40. PI( jsonobject->cJSON_GetArraySize( ) );
  41. PI(jsonarray->cJSON_GetArraySize( ));
  42.  
  43. cJSON *arrayitem=jsonarray->cJSON_GetArrayItem( );
  44. PS(arrayitem->valuestring);
  45. }
  46. PS("END Mark");
  47. delete jsonroot;
  48. return ;
  49. }

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

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

  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include "cJSON.h"
  4.  
  5. /* Parse text to JSON, then render back to text, and print! */
  6. void doit(char *text)
  7. {
  8. char *out;cJSON *json;
  9.  
  10. json=cJSON_Parse(text);
  11. if (!json) {printf("Error before: [%s]\n",cJSON_GetErrorPtr());}
  12. else
  13. {
  14. out=cJSON_Print(json);
  15. cJSON_Delete(json);
  16. printf("%s\n",out);
  17. free(out);
  18. }
  19. }
  20.  
  21. /* Read a file, parse, render back, etc. */
  22. void dofile(char *filename)
  23. {
  24. FILE *f=fopen(filename,"rb");fseek(f,,SEEK_END);long len=ftell(f);fseek(f,,SEEK_SET);
  25. char *data=(char*)malloc(len+);fread(data,,len,f);fclose(f);
  26. doit(data);
  27. free(data);
  28. }
  29.  
  30. /* Used by some code below as an example datatype. */
  31. struct record {const char *precision;double lat,lon;const char *address,*city,*state,*zip,*country; };
  32.  
  33. /* Create a bunch of objects as demonstration. */
  34. void create_objects()
  35. {
  36. cJSON *root,*fmt,*img,*thm,*fld;char *out;int i; /* declare a few. */
  37.  
  38. /* Here we construct some JSON standards, from the JSON site. */
  39.  
  40. /* Our "Video" datatype: */
  41. root=cJSON_CreateObject();
  42. cJSON_AddItemToObject(root, "name", cJSON_CreateString("Jack (\"Bee\") Nimble"));
  43. cJSON_AddItemToObject(root, "format", fmt=cJSON_CreateObject());
  44. cJSON_AddStringToObject(fmt,"type", "rect");
  45. cJSON_AddNumberToObject(fmt,"width", );
  46. cJSON_AddNumberToObject(fmt,"height", );
  47. cJSON_AddFalseToObject (fmt,"interlace");
  48. cJSON_AddNumberToObject(fmt,"frame rate", );
  49.  
  50. out=cJSON_Print(root); cJSON_Delete(root); printf("%s\n",out); free(out); /* Print to text, Delete the cJSON, print it, release the string. */
  51.  
  52. /* Our "days of the week" array: */
  53. const char *strings[]={"Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"};
  54. root=cJSON_CreateStringArray(strings,);
  55.  
  56. out=cJSON_Print(root); cJSON_Delete(root); printf("%s\n",out); free(out);
  57.  
  58. /* Our matrix: */
  59. int numbers[][]={{,-,},{,,},{,,}};
  60. root=cJSON_CreateArray();
  61. for (i=;i<;i++) cJSON_AddItemToArray(root,cJSON_CreateIntArray(numbers[i],));
  62.  
  63. /* cJSON_ReplaceItemInArray(root,1,cJSON_CreateString("Replacement")); */
  64.  
  65. out=cJSON_Print(root); cJSON_Delete(root); printf("%s\n",out); free(out);
  66.  
  67. /* Our "gallery" item: */
  68. int ids[]={,,,};
  69. root=cJSON_CreateObject();
  70. cJSON_AddItemToObject(root, "Image", img=cJSON_CreateObject());
  71. cJSON_AddNumberToObject(img,"Width",);
  72. cJSON_AddNumberToObject(img,"Height",);
  73. cJSON_AddStringToObject(img,"Title","View from 15th Floor");
  74. cJSON_AddItemToObject(img, "Thumbnail", thm=cJSON_CreateObject());
  75. cJSON_AddStringToObject(thm, "Url", "http:/*www.example.com/image/481989943");
  76. cJSON_AddNumberToObject(thm,"Height",);
  77. cJSON_AddStringToObject(thm,"Width","");
  78. cJSON_AddItemToObject(img,"IDs", cJSON_CreateIntArray(ids,));
  79.  
  80. out=cJSON_Print(root); cJSON_Delete(root); printf("%s\n",out); free(out);
  81.  
  82. /* Our array of "records": */
  83. struct record fields[]={
  84. {"zip",37.7668,-1.223959e+2,"","SAN FRANCISCO","CA","","US"},
  85. {"zip",37.371991,-1.22026e+2,"","SUNNYVALE","CA","","US"}};
  86.  
  87. root=cJSON_CreateArray();
  88. for (i=;i<;i++)
  89. {
  90. cJSON_AddItemToArray(root,fld=cJSON_CreateObject());
  91. cJSON_AddStringToObject(fld, "precision", fields[i].precision);
  92. cJSON_AddNumberToObject(fld, "Latitude", fields[i].lat);
  93. cJSON_AddNumberToObject(fld, "Longitude", fields[i].lon);
  94. cJSON_AddStringToObject(fld, "Address", fields[i].address);
  95. cJSON_AddStringToObject(fld, "City", fields[i].city);
  96. cJSON_AddStringToObject(fld, "State", fields[i].state);
  97. cJSON_AddStringToObject(fld, "Zip", fields[i].zip);
  98. cJSON_AddStringToObject(fld, "Country", fields[i].country);
  99. }
  100.  
  101. /* cJSON_ReplaceItemInObject(cJSON_GetArrayItem(root,1),"City",cJSON_CreateIntArray(ids,4)); */
  102.  
  103. out=cJSON_Print(root); cJSON_Delete(root); printf("%s\n",out); free(out);
  104.  
  105. }
  106.  
  107. int main (int argc, const char * argv[]) {
  108. /* a bunch of json: */
  109. 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}";
  110. char text2[]="[\"Sunday\", \"Monday\", \"Tuesday\", \"Wednesday\", \"Thursday\", \"Friday\", \"Saturday\"]";
  111. char text3[]="[\n [0, -1, 0],\n [1, 0, 0],\n [0, 0, 1]\n ]\n";
  112. 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 }";
  113. 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 ]";
  114.  
  115. /* Process each json textblock by parsing, then rebuilding: */
  116. doit(text1);
  117. doit(text2);
  118. doit(text3);
  119. doit(text4);
  120. doit(text5);
  121.  
  122. /* Parse standard testfiles: */
  123. /* dofile("../../tests/test1"); */
  124. /* dofile("../../tests/test2"); */
  125. /* dofile("../../tests/test3"); */
  126. /* dofile("../../tests/test4"); */
  127. /* dofile("../../tests/test5"); */
  128.  
  129. /* Now some samplecode for building objects concisely: */
  130. create_objects();
  131.  
  132. return ;
  133. }

感觉比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. gi常用命令

    git提交代码流程 git status 检查当前代码和主支代码不同的状态 git diff 可指定文件查看这个文件修改的内容 git add . 把自己所有修改的代码提交 git commit 提交 ...

  2. webshpere 节点&环境分析

    场景名称:LotusConnections: 场景下有一个节点:feb02Node1 节点下有一个应用服务器 LotusConnections server.

  3. 学习ABP遇到的问题汇总

    1,在abp官网下载的模板(asp.net+ef)写Application层的时候需要使用AutoMapper.结果ObjectMapper一直为null 解决:需要在当前项目的Module依赖Abp ...

  4. Wannafly挑战赛21A

    题目链接 Wannafly挑战赛21A 题解 代码 #include <cstdio> #include <cmath> #define MAX 1000005 #define ...

  5. 关于dubbo服务的xml配置文件报错的问题

    在配置dubbo服务的过程中,经常会遇到虽然程序能够跑起来,但是配置文件一堆红叉,虽然不影响功能,但是确实很让人恶心. 报错信息如下: Multiple annotations found at th ...

  6. 【汇总】PHP-FPM 配置优化(转)

    -----------------------开启php-fpm慢脚本日志 request_slowlog_timeout = 30sslowlog = /usr/local/php/var/log/ ...

  7. Serial Wire Debugging the STM32 via the Bus Pirate

    Serial Wire Debugging the STM32 via the Bus Pirate 2 October 2010 Step 1 - The Bus Pirate Step 2 - D ...

  8. echarts 去掉网格线

    去掉 xAxis : [ splitLine:{ show:false }], yAxis : [ splitLine:{ show:false }]

  9. linux虚拟机与winodows共享文件夹----linux安装VMware tools

    虚拟机里面想要获取原来本机 系统的文件,十分麻烦.为了实现原系统与虚拟机的共享文件夹,可以通过安装vmware tools达到共享目的.   1 安装vmware tools (1)检查虚拟机上是否挂 ...

  10. 让AngularJS的controllers之间共享数据

    如何让controller之间共享数据呢?大致是让不同controller中的变量指向同一个实例. 通过service创建一个存放共享数据的对象. .service("greeting&qu ...