博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[置顶] cJSON库(构建json与解析json字符串)-c语言
阅读量:5948 次
发布时间:2019-06-19

本文共 2397 字,大约阅读时间需要 7 分钟。

 一、c语言获取json中的数据。

 

1、先要有cJOSN库,两个文件分别是cJSON.c和cJSON.h。

2、感性认识

 

 
 
char * json = "{ \"json\" : { \"id\":1, \"nodeId\":11, \"deviceId\":111, \"deviceName\":\"aaa\", \"ieee\":\"01212\", \"ep\":\"1111\", \"type\":\"bbb\" }}";char * json1 = "{\"id\":1, \"nodeId\":11, \"deviceId\":111, \"deviceName\":\"aaa\"}";cJSON * root;cJSON * format;int value_int;char * value_string;root = cJSON_Parse(json); format = cJSON_GetObjectItem(root,"json");   value_int = cJSON_GetObjectItem(format,"nodeId")->valueint; value_string = cJSON_GetObjectItem(format,"ieee")->valuestring; printf( "%d\n", value_int );printf( "%s\n", value_string );cJSON_Delete(root);	root = cJSON_Parse(json1); value_int = cJSON_GetObjectItem(root,"id")->valueint; value_string = cJSON_GetObjectItem(root,"deviceName")->valuestring; printf( "%d\n", value_int );printf( "%s\n", value_string );cJSON_Delete(root);
 
 
 

 

结果:

 

11012121aaa

 

二、cJSON库

1、json的数据结构 

c语言中json数据是采用链表存储的 

 

typedef struct cJSON {   

 

    struct cJSON *next,*prev;// 数组 对象数据中用到   

 

    struct cJSON *child;// 数组 和对象中指向子数组对象或值   

 

    int type;// 元素的类型,如是对象还是数组   

 

    char *valuestring;// 如果是字符串   

 

    int valueint; // 如果是数值   

 

    double valuedouble;// 如果类型是cJSON_Number   

 

    char *string;// The item's name string, if this item is the child of, or is in the list of subitems of an object.   

 

} cJSON; 

 

三、cJSON使用

 

{   

 

    "name": "Jack (\"Bee\") Nimble",    

 

    "format": {   

 

        "type":       "rect",    

 

        "width":      1920,    

 

        "height":     1080,    

 

        "interlace":  false,    

 

        "frame rate": 24   

 

    }   

 

 

    "name": "Jack (\"Bee\") Nimble", 

 

    "format": {

 

        "type":       "rect", 

 

        "width":      1920, 

 

        "height":     1080, 

 

        "interlace":  false, 

 

        "frame rate": 24

 

    }

 

}

 

1、字符串解析成json结构体

 

1):讲字符串解析成json结构体。 

 

cJSON *root = cJSON_Parse(my_json_string); 

 

2):获取某个元素  

 

cJSON *format = cJSON_GetObjectItem(root,"format");   

 

int framerate = cJSON_GetObjectItem(format,"frame rate")->valueint; 

 

int framerate = cJSON_GetObjectItem(format,"frame rate")->valueint;

 

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

 

char *rendered=cJSON_Print(root); 

 

4):删除 

 

cJSON_Delete(root); 

 

2:构建一个json结构体  

 

cJSON *root,*fmt;   

 

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);

printf("%s\n",out); 

cJSON_Delete(root);

free(out);

 

 

转载地址:http://wmfxx.baihongyu.com/

你可能感兴趣的文章
自带科技基因,打造纯原创IP,“燃烧小宇宙”获数千万A轮融资
查看>>
未能加载文件或程序集"Newtonsoft.Json, Version=4.5.0.0
查看>>
C#多线程编程系列(二)- 线程基础
查看>>
Jenkins 内置变量(学习笔记二十四)
查看>>
PostgreSQL 10.1 手册_部分 II. SQL 语言_第 13 章 并发控制_13.2. 事务隔离
查看>>
虚拟机概念
查看>>
【云周刊】第195期:全球首家!阿里云获GNTC2018 网络创新大奖 成唯一获奖云服务商...
查看>>
【VS】使用vs2017自带的诊断工具(Diagnostic Tools)诊断程序的内存问题
查看>>
AutoScaling 支持从实例启动模板创建实例
查看>>
Mysql 查看视图、存储过程、函数、触发器
查看>>
Java提高篇(二):IO字节流、字符流和处理流
查看>>
云HBase集群的规划
查看>>
hello dato--graphlab create
查看>>
一个优质男朋友的标准
查看>>
浩鲸科技和京东加入 OpenMessaging 开源标准社区
查看>>
spring 注入方式
查看>>
FileZilla Client 3.42.0 beta1 发布,流行的 FTP 解决方案
查看>>
深度学习之迁移学习介绍与使用
查看>>
Qt学习笔记(一)-文件目录与术语解释
查看>>
IDEA 自动导入包
查看>>