当前位置:   article > 正文

利用cJSON解析JSON格式_cjson解析json文件

cjson解析json文件

目录

一、JSON格式

二、cJSON下载

三、cJSON常用函数接口

四、cJSON解析JSON案例

1.一层键值

2.多层键值(两次为例)

3.json数组解析

五、JSON添加数据 (与链表类似)

三层键值


在做的项目需要发JSON格式的消息并解析,因此学习了利用cJSON解析JSON格式,该格式易于人阅读和编写。同时也易于机器解析和生成。

一、JSON格式

语法:键 / 值

1、以 { 开始,以 } 结束,允许嵌套使用

2、每个键和值成对出现,并使用:分隔。如"age"=23

3、键值对之间用 ,分隔

值的多种类型:

字符串:用 " "

  1. {
  2. "name":"code",
  3. "gender":"male"
  4. }

数字:整数或浮点数都直接表示

  1. {
  2. "key1":10,
  3. "key2":20.0
  4. }

数组:用[ ]

  1. {
  2. "key1" : [0, 1],
  3. "key2" : [2, 3]
  4. }

布尔值:fault、true

二、cJSON下载

gitee仓库:https://gitee.com/peng-jiaweibabe/c-json

git clone https://gitee.com/peng-jiaweibabe/c-json.git

cJSON的.c和.h文件,使用的时候,只需要将这两个文件复制到工程目录,然后包含头文件cJSON.h即可。即#include "cJSON.h"

如若出现该情况,链接math库即可 

 

三、cJSON常用函数接口

1.cJSON_Parse

  1. CJSON_PUBLIC(cJSON *) cJSON_Parse(const char *value)
  2. 函数功能:将一个JSON字符串,按照cJSON结构体的结构序列化整个数据包,并在堆中开辟一块内存存储cJSON结构体
  3. 返回值:成功返回一个指向内存块中的cJSON的指针,失败返回NULL

2.cJSON_Print

  1. CJSON_PUBLIC(char *) cJSON_Print(const cJSON *item) //按JSON格式打印
  2. CJSON_PUBLIC(char *) cJSON_PrintUnformatted(const cJSON *item) //不按JSON格式打印
  3. 函数功能:将整条链表中存放的JSON信息输出到一个字符串中,使用时只需用一个字符串指针(char *)接收该函数返回的指针地址即可。
  4. 返回值:成功返回一个char*指针并指向位于堆中JSON字符串,失败返回NULL

3.cJSON_Delete

  1. CJSON_PUBLIC(void) cJSON_Delete(cJSON *c)
  2. 函数功能:释放位于堆中cJSON结构体内存
  3. 返回值:无

4.cJSON_GetObjectItem

  1. (cJSON *) cJSON_GetObjectItem(const cJSON * const object, const char * const string)
  2. 函数功能:根据键值对的名称从链表中取出对应的值,返回该键值对(链表节点)的地址
  3. 返回值:成功返回一个指向内存块中的cJSON的指针,失败返回NULL

5.cJSON_GetObjectItem(数组相关)

  1. CJSON_PUBLIC(cJSON *) cJSON_GetObjectItem(const cJSON * const object, const char * const string)
  2. (int) cJSON_GetArraySize(const cJSON *array)
  3. (cJSON *) cJSON_GetArrayItem(const cJSON *array, int index)

6.创建对象函数接口

  1. /* raw json */
  2. CJSON_PUBLIC(cJSON *) cJSON_CreateRaw(const char *raw);
  3. CJSON_PUBLIC(cJSON *) cJSON_CreateArray(void);
  4. CJSON_PUBLIC(cJSON *) cJSON_CreateObject(void);
  5. /* These calls create a cJSON item of the appropriate type. */
  6. CJSON_PUBLIC(cJSON *) cJSON_CreateNull(void);
  7. CJSON_PUBLIC(cJSON *) cJSON_CreateTrue(void);
  8. CJSON_PUBLIC(cJSON *) cJSON_CreateFalse(void);
  9. CJSON_PUBLIC(cJSON *) cJSON_CreateBool(cJSON_bool boolean);
  10. CJSON_PUBLIC(cJSON *) cJSON_CreateNumber(double num);
  11. CJSON_PUBLIC(cJSON *) cJSON_CreateString(const char *string);
  12. /* These utilities create an Array of count items. */
  13. CJSON_PUBLIC(cJSON *) cJSON_CreateIntArray(const int *numbers, int count);
  14. CJSON_PUBLIC(cJSON *) cJSON_CreateFloatArray(const float *numbers, int count);
  15. CJSON_PUBLIC(cJSON *) cJSON_CreateDoubleArray(const double *numbers, int count);
  16. CJSON_PUBLIC(cJSON *) cJSON_CreateStringArray(const char **strings, int count);

7.添加cJSON对象到链表

  1. CJSON_PUBLIC(void) cJSON_AddItemToArray(cJSON *array, cJSON *item);
  2. CJSON_PUBLIC(void) cJSON_AddItemToObject(cJSON *object, const char *string, cJSON *item);

8.从现有的cJSON链表中删除一个对象

  1. CJSON_PUBLIC(cJSON *) cJSON_DetachItemViaPointer(cJSON *parent, cJSON * const item);
  2. CJSON_PUBLIC(cJSON *) cJSON_DetachItemFromArray(cJSON *array, int which);
  3. CJSON_PUBLIC(void) cJSON_DeleteItemFromArray(cJSON *array, int which);
  4. CJSON_PUBLIC(cJSON *) cJSON_DetachItemFromObject(cJSON *object, const char *string);
  5. CJSON_PUBLIC(cJSON *) cJSON_DetachItemFromObjectCaseSensitive(cJSON *object, const char *string);
  6. CJSON_PUBLIC(void) cJSON_DeleteItemFromObject(cJSON *object, const char *string);
  7. CJSON_PUBLIC(void) cJSON_DeleteItemFromObjectCaseSensitive(cJSON *object, const char *string);

四、cJSON解析JSON案例

1.一层键值

  1. /*********************************************************************************
  2. * Copyright: (C) 2022 Nbiot<lingyun@gail.com>
  3. * All rights reserved.
  4. *
  5. * Filename: test_cjson.c
  6. * Description: This file test_cjson.c
  7. *
  8. * Version: 1.0.0(30/05/22)
  9. * Author: Nbiot <lingyun@gail.com>
  10. * ChangeLog: 1, Release initial version on "30/05/22 20:25:49"
  11. *
  12. ********************************************************************************/
  13. #include <stdio.h>
  14. #include <string.h>
  15. #include "cJSON.h"
  16. int main (int argc, char **argv)
  17. {
  18. char json_buf[] = "{\"type\":\"text\",\"number\":1111,\"sms\":\"nihao\"}";
  19. cJSON *json = NULL;
  20. cJSON *json_type = NULL;
  21. cJSON *json_num = NULL;
  22. cJSON *json_sms = NULL;
  23. printf("json格式化前:\n");
  24. printf("%s\n\n", json_buf);
  25. json = cJSON_Parse(json_buf); //json格式序列化
  26. if (NULL == json)
  27. {
  28. printf("cJSON_Parse error:%s\n", cJSON_GetErrorPtr());
  29. }
  30. printf("json格式化后:\n");
  31. printf("%s\n\n",cJSON_Print(json));
  32. /* 获取相应keyvalue */
  33. json_type = cJSON_GetObjectItem(json, "type");
  34. json_num = cJSON_GetObjectItem(json, "number");
  35. json_sms = cJSON_GetObjectItem(json, "sms");
  36. printf("type:%s\n", json_type->valuestring);
  37. printf("number:%d\n", json_num->valueint);
  38. printf("sms:%s\n", json_sms->valuestring);
  39. cJSON_Delete(json); //释放cjson结构体内存
  40. return 0;
  41. }

结果:

 2.多层键值(两次为例)

  1. /*********************************************************************************
  2. * Copyright: (C) 2022 Nbiot<lingyun@gail.com>
  3. * All rights reserved.
  4. *
  5. * Filename: test_cjson1.c
  6. * Description: This file test_cjson1.c
  7. *
  8. * Version: 1.0.0(30/05/22)
  9. * Author: Nbiot <lingyun@gail.com>
  10. * ChangeLog: 1, Release initial version on "30/05/22 23:36:09"
  11. *
  12. ********************************************************************************/
  13. #include <stdio.h>
  14. #include <string.h>
  15. #include "cJSON.h"
  16. int main (int argc, char **argv)
  17. {
  18. char json_buf[] = "{\"type\":\"text\",\"number\":{\"phone_number\":\"17687499242\"},\"sms\":\"nihao\"}";
  19. cJSON *json = NULL;
  20. cJSON *json_phone_number = NULL;
  21. printf("json格式化前:\n");
  22. printf("%s\n\n", json_buf);
  23. json = cJSON_Parse(json_buf); //json格式序列化
  24. if (NULL == json)
  25. {
  26. printf("cJSON_Parse error:%s\n", cJSON_GetErrorPtr());
  27. }
  28. printf("json格式化后:\n");
  29. printf("%s\n\n",cJSON_Print(json));
  30. /* 获取相应keyvalue */
  31. json_phone_number = cJSON_GetObjectItem(json, "number"); //首先获取第一次键值
  32. json_phone_number = cJSON_GetObjectItem(json_phone_number, "phone_number"); //获取第二层
  33. printf("phone_number:%s\n", json_phone_number->valuestring);
  34. cJSON_Delete(json); //释放cjson结构体内存
  35. return 0;
  36. }

结果:

3.json数组解析

  1. /*********************************************************************************
  2. * Copyright: (C) 2022 Nbiot<lingyun@gail.com>
  3. * All rights reserved.
  4. *
  5. * Filename: test_cjson3.c
  6. * Description: This file test_cjson3.c
  7. *
  8. * Version: 1.0.0(31/05/22)
  9. * Author: Nbiot <lingyun@gail.com>
  10. * ChangeLog: 1, Release initial version on "31/05/22 00:14:13"
  11. *
  12. ********************************************************************************/
  13. #include <stdio.h>
  14. #include <string.h>
  15. #include "cJSON.h"
  16. int main (int argc, char **argv)
  17. {
  18. char json_buf[] = "{\"type\":\"text\",\"number\":1111,\"sms\":\"nihao\",\"array\":[1,2,3]}";
  19. cJSON *json = NULL;
  20. cJSON *json_array = NULL;
  21. int array_size=0;
  22. cJSON *json_array_value = NULL;
  23. printf("json格式化前:\n");
  24. printf("%s\n\n", json_buf);
  25. json = cJSON_Parse(json_buf); //json格式序列化
  26. if (NULL == json)
  27. {
  28. printf("cJSON_Parse error:%s\n", cJSON_GetErrorPtr());
  29. }
  30. printf("json格式化后:\n");
  31. printf("%s\n\n",cJSON_Print(json));
  32. json_array = cJSON_GetObjectItem(json, "array");
  33. array_size = cJSON_GetArraySize(json_array); //获取数组大小
  34. printf("array_size=%d\n",array_size);
  35. for(int i=0; i<array_size; i++)
  36. {
  37. json_array_value = cJSON_GetArrayItem(json_array, i);
  38. printf("array[%d]=%d\n", i,json_array_value->valueint);
  39. }
  40. cJSON_Delete(json); //释放cjson结构体内存
  41. return 0;
  42. }

 结果:

五、JSON添加数据 (与链表类似)

三层键值

  1. /*********************************************************************************
  2. * Copyright: (C) 2022 Nbiot<lingyun@gail.com>
  3. * All rights reserved.
  4. *
  5. * Filename: test_cjson2.c
  6. * Description: This file test_cjson2.c
  7. *
  8. * Version: 1.0.0(30/05/22)
  9. * Author: Nbiot <lingyun@gail.com>
  10. * ChangeLog: 1, Release initial version on "30/05/22 20:46:57"
  11. *
  12. ********************************************************************************/
  13. #include <stdio.h>
  14. #include <stdlib.h>
  15. #include "cJSON.h"
  16. int main(int argc, char **argv)
  17. {
  18. char *json_ptr = NULL;
  19. cJSON * root = cJSON_CreateObject();
  20. cJSON * son = cJSON_CreateObject();
  21. cJSON * next = cJSON_CreateObject();
  22. cJSON_AddItemToObject(root, "gender", cJSON_CreateString("male"));
  23. cJSON_AddItemToObject(root, "student", son); //第一层嵌套键值
  24. cJSON_AddItemToObject(son, "name", cJSON_CreateString("xiaochen"));//第二层嵌套键值
  25. cJSON_AddItemToObject(son, "school", next); //第二层嵌套键值
  26. cJSON_AddItemToObject(next, "name", cJSON_CreateString("high school"));//第三层嵌套键值
  27. json_ptr = cJSON_Print(root);
  28. printf("JSON:\n", json_ptr);
  29. printf("%s\n", json_ptr);
  30. free(json_ptr);
  31. cJSON_Delete(root);
  32. return 0;
  33. }

结果:

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/272844
推荐阅读