怎么用C语言获取JSON中的数据?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了怎么用C语言获取JSON中的数据?相关的知识,希望对你有一定的参考价值。

发送一段JSON格式字符串消息“aaa”:10,"bbb":20,我想使用C语言读出10和20这两个数,怎么样操作?

用C语言获取JSON中的数据的方法是使用 CJSON。

以下简单介绍用CJSON的思路及实现:

1)创建json,从json中获取数据。

#nclude <stdio.h> 

#include "cJSON.h"

char * makeJson()

cJSON * pJsonRoot = NULL;


pJsonRoot = cJSON_CreateObject();

if(NULL == pJsonRoot)

//error happend here

return NULL;

cJSON_AddStringToObject(pJsonRoot, "hello", "hello world");

cJSON_AddNumberToObject(pJsonRoot, "number", 10010);

cJSON_AddBoolToObject(pJsonRoot, "bool", 1);

cJSON * pSubJson = NULL;

pSubJson = cJSON_CreateObject();

if(NULL == pSubJson)

// create object faild, exit

cJSON_Delete(pJsonRoot);

return NULL;

cJSON_AddStringToObject(pSubJson, "subjsonobj", "a sub json string");

cJSON_AddItemToObject(pJsonRoot, "subobj", pSubJson);

char * p = cJSON_Print(pJsonRoot);

// else use : 

// char * p = cJSON_PrintUnformatted(pJsonRoot);

if(NULL == p)

//convert json list to string faild, exit

//because sub json pSubJson han been add to pJsonRoot, so just delete pJsonRoot, if you also delete pSubJson, it will coredump, and error is : double free

cJSON_Delete(pJsonRoot);

return NULL;

//free(p);

cJSON_Delete(pJsonRoot);

return p;



void parseJson(char * pMsg)

if(NULL == pMsg)

return;

cJSON * pJson = cJSON_Parse(pMsg);

if(NULL == pJson) 

// parse faild, return

return ;



// get string from json

cJSON * pSub = cJSON_GetObjectItem(pJson, "hello");

if(NULL == pSub)

//get object named "hello" faild

printf("obj_1 : %s\\n", pSub->valuestring);

// get number from json

pSub = cJSON_GetObjectItem(pJson, "number");

if(NULL == pSub)

//get number from json faild

printf("obj_2 : %d\\n", pSub->valueint);

// get bool from json

pSub = cJSON_GetObjectItem(pJson, "bool");

if(NULL == pSub)

// get bool from json faild

 

printf("obj_3 : %d\\n", pSub->valueint);

// get sub object

pSub = cJSON_GetObjectItem(pJson, "subobj");

if(NULL == pSub)

// get sub object faild

cJSON * pSubSub = cJSON_GetObjectItem(pSub, "subjsonobj");

if(NULL == pSubSub)

// get object from subject object faild

printf("sub_obj_1 : %s\\n", pSubSub->valuestring);

cJSON_Delete(pJson);


int main()

char * p = makeJson();

if(NULL == p)

return 0;

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

parseJson(p);

free(p);  //这里不要忘记释放内存,cJSON_Print()函数或者cJSON_PrintUnformatted()产生的内存,使用free(char *)进行释放

return 0;

2)创建json数组和解析json数组

//创建数组,数组值是另一个JSON的item,这里使用数字作为演示

char * makeArray(int iSize)

cJSON * root = cJSON_CreateArray(); 

if(NULL == root)

printf("create json array faild\\n");

return NULL;

int i = 0;


for(i = 0; i < iSize; i++)

cJSON_AddNumberToObject(root, "hehe", i);

char * out = cJSON_Print(root);

cJSON_Delete(root);


return out;



//解析刚刚的CJSON数组

void parseArray(char * pJson)

if(NULL == pJson)

 

return ;

cJSON * root = NULL;

if((root = cJSON_Parse(pJson)) == NULL)

return ;

int iSize = cJSON_GetArraySize(root);

for(int iCnt = 0; iCnt < iSize; iCnt++)

cJSON * pSub = cJSON_GetArrayItem(root, iCnt);

if(NULL == pSub)

continue;

int iValue = pSub->valueint;

printf("value[%2d] : [%d]\\n", iCnt, iValue);

 

cJSON_Delete(root);

return;

有两种方法: 

一是标准的输出输入方式 比如新建一个磁盘文件c:\\a.txt, 将键盘输入的一字符串写到文件中: 

FILE *ft; 

char str[50]; 

ft=fopen("c:\\\\a.txt","w+"); 

printf("输入一个字符串:"); 

scanf("%s",str); 

fputs(str,ft); 

fclose(ft);

//重新打开这个文件并读出字符串,显示在屏幕上 ft=fopen("c:\\\\a.txt","rt"); 

fgets(str,50,ft); 

fclose(ft); printf("%s",str);   

二是低级输入输出方式 仍如上例: 

int hd; char str[50]; printf("输入一个字符串:");

scanf("%s",str);

hd=open("c:\\\\a.txt",O_CREAT|O_TEXT|O_WRONLY);

write(hd,str,strlen(str)); 

close(hd); //重新打开这个文件并读出字符串,显示在屏幕上。

hd=open("c:\\\\a.txt",O_TEXT|O_RDONLY); read(hd,str,50); 

close(hd); printf("%s",str)。

参考技术A

可以使用sscanf来读取。一个例子:

#include <stdio.h>

int main(void) 
char str[] = "“aaa”:10,“bbb”:20";
int a, b;
sscanf(str, "%*[^:]:%d%*[^:]:%d%*", &a, &b);
printf("a = %d, b = %d\\n", a, b);
return 0;

注意:上面aaa和bbb使用的是中文的引号。

参考技术B

1、可以使用sscanf来读取。一个例子:

#include <stdio.h>
int main(void) 
    char str[] = "“aaa”:10,“bbb”:20";
    int a, b;
    sscanf(str, "%*[^:]:%d%*[^:]:%d%*", &a, &b);
    printf("a = %d, b = %d\\n", a, b);
    return 0;

2、JSON(javascript Object Notation) 是一种轻量级的数据交换格式。易于人阅读和编写。同时也易于机器解析和生成。它基于JavaScript(Standard ECMA-262 3rd Edition - December 1999)的一个子集。 JSON采用完全独立于语言的文本格式,但是也使用了类似于C语言家族的习惯(包括C, C++, C#, Java, JavaScript, Perl, Python等)。这些特性使JSON成为理想的数据交换语言。

参考技术C 用C语言获取JSON中的数据的方法是使用 CJSON。
以下简单介绍用CJSON的思路及实现:

1)创建json,从json中获取数据。
#nclude <stdio.h>
#include "cJSON.h"

char * makeJson()

cJSON * pJsonRoot = NULL;

pJsonRoot = cJSON_CreateObject();
if(NULL == pJsonRoot)

//error happend here
return NULL;

cJSON_AddStringToObject(pJsonRoot, "hello", "hello world");
cJSON_AddNumberToObject(pJsonRoot, "number", 10010);
cJSON_AddBoolToObject(pJsonRoot, "bool", 1);
cJSON * pSubJson = NULL;
pSubJson = cJSON_CreateObject();
if(NULL == pSubJson)

// create object faild, exit
cJSON_Delete(pJsonRoot);
return NULL;

cJSON_AddStringToObject(pSubJson, "subjsonobj", "a sub json string");
cJSON_AddItemToObject(pJsonRoot, "subobj", pSubJson);

char * p = cJSON_Print(pJsonRoot);
// else use :
// char * p = cJSON_PrintUnformatted(pJsonRoot);
if(NULL == p)

//convert json list to string faild, exit
//because sub json pSubJson han been add to pJsonRoot, so just delete pJsonRoot, if you also delete pSubJson, it will coredump, and error is : double free
cJSON_Delete(pJsonRoot);
return NULL;

//free(p);

cJSON_Delete(pJsonRoot);

return p;


void parseJson(char * pMsg)

if(NULL == pMsg)

return;

cJSON * pJson = cJSON_Parse(pMsg);
if(NULL == pJson)

// parse faild, return
return ;


// get string from json
cJSON * pSub = cJSON_GetObjectItem(pJson, "hello");
if(NULL == pSub)

//get object named "hello" faild

printf("obj_1 : %s\n", pSub->valuestring);

// get number from json
pSub = cJSON_GetObjectItem(pJson, "number");
if(NULL == pSub)

//get number from json faild

printf("obj_2 : %d\n", pSub->valueint);

// get bool from json
pSub = cJSON_GetObjectItem(pJson, "bool");
if(NULL == pSub)

// get bool from json faild

printf("obj_3 : %d\n", pSub->valueint);

// get sub object
pSub = cJSON_GetObjectItem(pJson, "subobj");
if(NULL == pSub)

// get sub object faild

cJSON * pSubSub = cJSON_GetObjectItem(pSub, "subjsonobj");
if(NULL == pSubSub)

// get object from subject object faild

printf("sub_obj_1 : %s\n", pSubSub->valuestring);

cJSON_Delete(pJson);


int main()

char * p = makeJson();
if(NULL == p)

return 0;

printf("%s\n", p);
parseJson(p);
  free(p);  //这里不要忘记释放内存,cJSON_Print()函数或者cJSON_PrintUnformatted()产生的内存,使用free(char *)进行释放
return 0;

2)创建json数组和解析json数组
//创建数组,数组值是另一个JSON的item,这里使用数字作为演示
char * makeArray(int iSize)

cJSON * root = cJSON_CreateArray();
if(NULL == root)

printf("create json array faild\n");
return NULL;

int i = 0;

for(i = 0; i < iSize; i++)

cJSON_AddNumberToObject(root, "hehe", i);

char * out = cJSON_Print(root);
cJSON_Delete(root);

return out;


//解析刚刚的CJSON数组
void parseArray(char * pJson)

if(NULL == pJson)

return ;

cJSON * root = NULL;
if((root = cJSON_Parse(pJson)) == NULL)

return ;

int iSize = cJSON_GetArraySize(root);
for(int iCnt = 0; iCnt < iSize; iCnt++)

cJSON * pSub = cJSON_GetArrayItem(root, iCnt);
if(NULL == pSub)

continue;

int iValue = pSub->valueint;
printf("value[%2d] : [%d]\n", iCnt, iValue);

cJSON_Delete(root);
return;

以上是关于怎么用C语言获取JSON中的数据?的主要内容,如果未能解决你的问题,请参考以下文章

linux下怎么用c语言获取一帧屏幕图像数据,怎么分块

怎么用 C/C++ 把结构体数组转成 JSON串

用C语言解析JSON数据

已知IP和端口,用c语言怎么判断能不能连接网络

c语言编程,我要把子文件中获取的数据传回主文件中的一个函数该怎么编程序

求JS如何读取PHP里的多维数组?