色婷婷狠狠18禁久久YY,CHINESE性内射高清国产,国产女人18毛片水真多1,国产AV在线观看

c 中json的使用方法

傅智翔1年前8瀏覽0評論

JSON是一種輕量級的數(shù)據(jù)交換格式,常用于Web應(yīng)用中的數(shù)據(jù)傳輸。在C語言中,可以使用第三方庫json-c來實現(xiàn)JSON的解析和生成。

首先,需要安裝json-c庫,可以通過以下命令進行安裝:

sudo apt-get install libjson-c-dev

接下來,可以使用json-c庫提供的API來解析JSON。

#include#includeint main() {
char *json_string = "{\"name\": \"Tom\", \"age\": 18, \"is_student\": true}";
struct json_object *root = json_tokener_parse(json_string);
struct json_object *name, *age, *is_student;
json_object_object_get_ex(root, "name", &name);
json_object_object_get_ex(root, "age", &age);
json_object_object_get_ex(root, "is_student", &is_student);
printf("name: %s\n", json_object_get_string(name));
printf("age: %d\n", json_object_get_int(age));
printf("is_student: %d\n", json_object_get_boolean(is_student));
json_object_put(root);
return 0;
}

上述代碼將JSON字符串解析成json_object對象,然后通過json_object_object_get_ex函數(shù)獲取name、age和is_student字段對應(yīng)的json_object對象,并打印出相應(yīng)的值。

如果需要生成JSON,可以使用如下代碼:

#include#includeint main() {
struct json_object *root = json_object_new_object();
struct json_object *name = json_object_new_string("Tom");
struct json_object *age = json_object_new_int(18);
struct json_object *is_student = json_object_new_boolean(true);
json_object_object_add(root, "name", name);
json_object_object_add(root, "age", age);
json_object_object_add(root, "is_student", is_student);
printf("%s\n", json_object_to_json_string(root));
json_object_put(root);
return 0;
}

上述代碼創(chuàng)建了一個json_object對象,并設(shè)置了name、age和is_student字段對應(yīng)的值,然后通過json_object_object_add函數(shù)將它們添加到root對象中,并通過json_object_to_json_string函數(shù)將root對象轉(zhuǎn)換成JSON字符串并打印出來。

使用json-c庫可以方便地實現(xiàn)JSON的解析和生成,提高數(shù)據(jù)的傳輸效率和可讀性。