cJSON调用方法

前端之家收集整理的这篇文章主要介绍了cJSON调用方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。


我使用的是cJSON:http://sourceforge.net/projects/cjson/

先看json的数据结构
c中没有对象,所以json数据是采用链表存储的


  1. typedefstructcJSON{
  2. structcJSON*next,*prev;//数组对象数据中用到
  3. structcJSON*child;//数组和对象中指向子数组对象或值
  4. inttype;//元素的类型,如是对象还是数组
  5. char*valuestring;//如果是字符串
  6. intvalueint;//如果是数值
  7. doublevaluedouble;//如果类型是cJSON_Number
  8. char*string;//Theitem'snamestring,ifthisitemisthechildof,orisinthelistofsubitemsofanobject.
  9. }cJSON;


比如你有一个json数据


  1. {
  2. "name":"Jack(\"Bee\")Nimble",
  3. "format":{
  4. "type":"rect",
  5. "width":1920,
  6. "height":1080,
  7. "interlace":false,
  8. "framerate":24
  9. }
  10. }

那么你可以
1:讲字符串解析成json结构体。

cJSON*root=cJSON_Parse(my_json_string);

2:获取某个元素

  1. cJSON*format=cJSON_GetObjectItem(root,"format");
  2. intframerate=cJSON_GetObjectItem(format,"framerate")->valueint;

3:讲json结构体转换成字符串

char*rendered=cJSON_Print(root);

cJSON_Delete(root);






构建一个json结构体

  1. cJSON*root,*fmt;
  2. root=cJSON_CreateObject();
  3. cJSON_AddItemToObject(root,"name",cJSON_CreateString("Jack(\"Bee\")Nimble"));
  4. cJSON_AddItemToObject(root,"format",fmt=cJSON_CreateObject());
  5. cJSON_AddStringToObject(fmt,"type","rect");
  6. cJSON_AddNumberToObject(fmt,"width",1920);
  7. cJSON_AddNumberToObject(fmt,"height",1080);
  8. cJSON_AddFalseToObject(fmt,"interlace");
  9. cJSON_AddNumberToObject(fmt,"framerate",24);
原文链接:https://www.f2er.com/json/290244.html

猜你在找的Json相关文章