cJson是一个非常轻量级的JSON数据解析和构建的oss。

可以很容易的的在C代码中构建一个JSON格式的字符串。也可以将JSON字符串转成cJson中定义的cJson object.

通常用在,手机浏览器或者app发送一个JSON数据到平台,平台上运行的是C代码,平台需要将JSON字符串转成cJson object,再进行解析JSON中的内容转成C结构体,最终做完处理后,构建JSON字符串返回给手机浏览器和app。

同时,也可以用来搭建简单的JSON RPC机制,在客户端的API中将函数名和参数转换成JSON字符串,在server端去解析JSON字符串做处理。

cJson只包含两个文件cJson.c和cJson.h。我们在使用时可以直接嵌入到代码中,也可以将cJson编译成so再使用。

cJson自带的sample code是cJson用法的比较全面的例子。因此就不自己写sample了。

#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);//将字符串解析成Json object.
  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;long len;char *data;

  f=fopen(filename,"rb");fseek(f,0,SEEK_END);len=ftell(f);fseek(f,0,SEEK_SET);//计算文件长度。
  data=(char*)malloc(len+1);fread(data,1,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. */
  /* Our "days of the week" array: */
  const char *strings[7]={"Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"};
  /* Our matrix: */
  int numbers[3][3]={{0,-1,0},{1,0,0},{0,0,1}};
  /* Our "gallery" item: */
  int ids[4]={116,943,234,38793};
  /* Our array of "records": */
  struct record fields[2]={
    {"zip",37.7668,-1.223959e+2,"","SAN FRANCISCO","CA","94107","US"},
    {"zip",37.371991,-1.22026e+2,"","SUNNYVALE","CA","94085","US"}

  };

  /* Here we construct some JSON standards, from the JSON site. */

  /* Our "Video" datatype: */

//构建的Json数据如下:

  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", 1920);
  cJSON_AddNumberToObject(fmt,"height", 1080);
  cJSON_AddFalseToObject (fmt,"interlace");
  cJSON_AddNumberToObject(fmt,"frame rate", 24);

  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: */

//构建的Json数据如下:

  root=cJSON_CreateStringArray(strings,7);

  out=cJSON_Print(root); cJSON_Delete(root); printf("%s\n",out); free(out);

  /* Our matrix: */

//构建的Json数据如下:

  root=cJSON_CreateArray();

  for (i=0;i<3;i++) cJSON_AddItemToArray(root,cJSON_CreateIntArray(numbers[i],3));

  /* cJSON_ReplaceItemInArray(root,1,cJSON_CreateString("Replacement")); */

  out=cJSON_Print(root); cJSON_Delete(root); printf("%s\n",out); free(out);

  /* Our "gallery" item: */

//构建的Json数据如下:

  root=cJSON_CreateObject();

  cJSON_AddItemToObject(root, "Image", img=cJSON_CreateObject());
  cJSON_AddNumberToObject(img,"Width",800);
  cJSON_AddNumberToObject(img,"Height",600);
  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",125);
  cJSON_AddStringToObject(thm,"Width","100");
  cJSON_AddItemToObject(img,"IDs", cJSON_CreateIntArray(ids,4));

  out=cJSON_Print(root); cJSON_Delete(root); printf("%s\n",out); free(out);

  /* Our array of "records": */

//构建的Json数据如下:

  root=cJSON_CreateArray();

  for (i=0;i<2;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 0;
}

上面的sample大都是字符串构建cJson object的过程。下面我们看看如何解析cJson object中的item。

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 *out;cJSON *json;

  json=cJSON_Parse(text1);
  if (!json) {printf("Error before: [%s]\n",cJSON_GetErrorPtr());}
  else
  {
    out=cJSON_Print(json);
    cJSON *name = NULL;
    name = cJSON_GetObjectItem(json, "name");
    printf("name:%s\n", name->valuestring);
    cJSON *fmt = cJSON_GetObjectItem(json, "format");
    printf("fmt:type:%s\n", cJSON_GetObjectItem(fmt, "type")->valuestring);
    printf("fmt:width:%d\n",cJSON_GetObjectItem(fmt, "width")->valueint);
    printf("fmt:height:%d\n",cJSON_GetObjectItem(fmt, "height")->valueint);
    printf("fmt:interlacetype:%d\n", cJSON_GetObjectItem(fmt, "interlace")->type);
    if (cJSON_GetObjectItem(fmt, "interlace")->type == (int) cJSON_False)
      printf("fmt:interlace:false\n");
    else if (cJSON_GetObjectItem(fmt, "interlace")->type == (int)cJSON_True)
      printf("fmt:interlace:true\n");
    printf("fmt:frame rate:%d\n",cJSON_GetObjectItem(fmt, "frame rate")->valueint);
    cJSON_Delete(json);
    printf("%s\n",out);
    free(out);
  }

  return 0;
}

输出结果如下:

cJson 常见用法的更多相关文章

  1. Linux中find常见用法

    Linux中find常见用法示例 ·find   path   -option   [   -print ]   [ -exec   -ok   command ]   {} \; find命令的参数 ...

  2. php中的curl使用入门教程和常见用法实例

    摘要: [目录] php中的curl使用入门教程和常见用法实例 一.curl的优势 二.curl的简单使用步骤 三.错误处理 四.获取curl请求的具体信息 五.使用curl发送post请求 六.文件 ...

  3. Guava中Predicate的常见用法

    Guava中Predicate的常见用法 1.  Predicate基本用法 guava提供了许多利用Functions和Predicates来操作Collections的工具,一般在 Iterabl ...

  4. find常见用法

    Linux中find常见用法示例 ·find   path   -option   [   -print ]   [ -exec   -ok   command ]   {} \; find命令的参数 ...

  5. iOS 开发多线程篇—GCD的常见用法

    iOS开发多线程篇—GCD的常见用法 一.延迟执行 1.介绍 iOS常见的延时执行有2种方式 (1)调用NSObject的方法 [self performSelector:@selector(run) ...

  6. iOS开发多线程篇—GCD的常见用法

    iOS开发多线程篇—GCD的常见用法 一.延迟执行 1.介绍 iOS常见的延时执行有2种方式 (1)调用NSObject的方法 [self performSelector:@selector(run) ...

  7. [转]EasyUI——常见用法总结

    原文链接: EasyUI——常见用法总结 1. 使用 data-options 来初始化属性. data-options是jQuery Easyui 最近两个版本才加上的一个特殊属性.通过这个属性,我 ...

  8. NSString常见用法总结

    //====================NSStirng 的常见用法==================== -(void)testString { //创建格式化字符串:占位符(由一个%加一个字 ...

  9. [转]Linux中find常见用法示例

    Linux中find常见用法示例[转]·find   path   -option   [   -print ]   [ -exec   -ok   command ]   {} \;find命令的参 ...

随机推荐

  1. Wannafly Camp 2020 Day 6I 你吓到我的马了.jpg - BFS

    暴力BFS即可 #include <bits/stdc++.h> using namespace std; int n,m,f[105][105]; char s[105][105]; s ...

  2. linux - mysql - 卸载:RPM包安装方式的MySQL卸载

    (1)检查是否安装了MySQL组件 [root@DB-Server init.d]# rpm -qa | grep -i mysql MySQL-devel-5.6.23-1.linux_glibc2 ...

  3. redis 列表类型list

    列表类型(list)1.插入 左侧插入 :lpush key value1 value2 value3... 右侧插入: lpush key value1 value2 value3... 在指定元素 ...

  4. HttpRequestException encountered解决方法

    每次pull代码的时候,总是要输入账号,密码,百度了一下HttpRequestException encountered错误 发现是Github 禁用了TLS v1.0 and v1.1,必须更新Wi ...

  5. 想要学好Git,应该掌握哪些基础知识?

    说到Git,作为程序员的你,在项目开发中一定会使用到或将来也一定会使用到的,但是我相信,很多在使用Git的人,都只是停留一些简单的操作上,比如提交(commit).拉取(pull).推送(push). ...

  6. cmd 运行py脚本,提示找不到xx模块

    一.在学习Django+接口自动化测试,用Jenkins做定时任务,cmd运行脚本时提示 "找不到xx模块": 1.原因:Pycharm单独运行脚本时没问题,cmd运行找不到模块. ...

  7. C语言 malloc函数

    版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明.                                                 ...

  8. docker远程访问

    查看版本 docker version 查看信息 docker info 修改配置文件 ubuntu在 /etc/default/docker centos在/usr/lib/systemd/syst ...

  9. Python常用的类库、对应的方法和属性

    Python常用的类库.对应的方法和属性

  10. pytest学习4-fixtures

    源码注释: def fixture(scope="function", params=None, autouse=False, ids=None, name=None): &quo ...