cjson解析json
时间: 2023-06-21 13:09:38 浏览: 142
cjson 是一个非常快速的 C 语言 JSON 解析库,可以轻松地解析 JSON 字符串并将其转换为 C 语言中的数据类型,例如 Lua 中的 table 类型。以下是使用 cjson 解析 JSON 的基本步骤:
1. 引入 cjson 库:
```
#include "cJSON.h"
```
2. 定义一个 cJSON 对象:
```
cJSON *root = NULL;
```
3. 调用 cjson 的解析函数将 JSON 字符串转换为 cJSON 对象:
```
root = cJSON_Parse(json_string);
```
4. 使用 cJSON 对象中的函数获取 JSON 中的数据:
```
cJSON *item = cJSON_GetObjectItemCaseSensitive(root, "key");
```
其中,"key" 为要获取的 JSON 属性名。
5. 将 cJSON 对象销毁:
```
cJSON_Delete(root);
```
完整的示例代码如下:
```
#include <stdio.h>
#include <stdlib.h>
#include "cJSON.h"
int main() {
char *json_string = "{\"name\":\"Alice\",\"age\":18,\"gender\":\"female\"}";
cJSON *root = NULL;
root = cJSON_Parse(json_string);
cJSON *name = cJSON_GetObjectItemCaseSensitive(root, "name");
cJSON *age = cJSON_GetObjectItemCaseSensitive(root, "age");
cJSON *gender = cJSON_GetObjectItemCaseSensitive(root, "gender");
printf("name: %s\n", name->valuestring);
printf("age: %d\n", age->valueint);
printf("gender: %s\n", gender->valuestring);
cJSON_Delete(root);
return 0;
}
```
阅读全文