遍历 JSON 数组的思路是:
1 通过 cJSON_GetArraySize() 函数获取数组的元素个数;
2 通过 cJSON_GetArrayItem() 函数,根据数组的下标,获取下标对应的元素;
//========================================================================
如下是测试的例子:
#include <stdio.h>
#include <stdlib.h>
#include "cJSON.h"
void json_create(void);
void json_parse(void);
//========================================================
//========================================================
void print_json(cJSON *p)
{
printf("============================\n");
printf("type = %d\n", p->type);
printf("valuestring = %s\n", p->valuestring);
printf("valueint = %d\n", p->valueint);
printf("valuedouble = %f\n", p->valuedouble);
printf("string = %s\n", p->string);
printf("============================\n");
}
//========================================================
//========================================================
int main (int argc, const char * argv[])
{
json_create();
}
//========================================================
//========================================================
void json_create(void)
{
cJSON *array = cJSON_CreateArray();
cJSON *v1;
int i;
cJSON_AddItemToArray(array, cJSON_CreateString("www"));
cJSON_AddItemToArray(array, cJSON_CreateNumber(12));
cJSON_AddItemToArray(array, cJSON_CreateNumber(12.345));
char *out = cJSON_Print(array);
printf("%s\n",out);
print_json(array);
int len = cJSON_GetArraySize(array);
printf("len = %d\n", len);
for(i = 0; i < len; i++)
{
v1 =cJSON_GetArrayItem(array , i);
print_json(v1);
}
cJSON_Delete(array);
}
运行的结果如下:
[hill@Ubunut10 test1]$./test
["www", 12, 12.345000]
============================
type = 5
valuestring = (null)
valueint = 0
valuedouble = 0.000000
string = (null)
============================
len = 3
============================
type = 4
valuestring = www
valueint = 0
valuedouble = 0.000000
string = (null)
============================
============================
type = 3
valuestring = (null)
valueint = 12
valuedouble = 12.000000
string = (null)
============================
============================
type = 3
valuestring = (null)
valueint = 12
valuedouble = 12.345000
string = (null)
============================
[hill@Ubunut10 test1]$
韦凯峰 Linux C/C++零基础编程教程
Linux系统编程,Openwrt系统开发