CGI(通用網關接口)是一種通信協議,通過它,Web服務器可以將客戶端請求發送給其他應用程序并獲取結果。JSON(JavaScript對象表示)是一種輕量級數據格式,常用于數據交互和API返回。在Web開發中,CGI可以解析JSON數據,使得應用程序能夠處理JSON格式的數據。
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <ctype.h> #include <stdbool.h> #include <json-c/json.h> int main(void) { char *json_string = "{ \"name\":\"Jane\", \"age\":30, \"city\":\"New York\" }"; json_object *parsed_json; json_object *name; json_object *age; json_object *city; parsed_json = json_tokener_parse(json_string); json_object_object_get_ex(parsed_json, "name", &name); json_object_object_get_ex(parsed_json, "age", &age); json_object_object_get_ex(parsed_json, "city", &city); printf("Name: %s\n", json_object_get_string(name)); printf("Age: %d\n", json_object_get_int(age)); printf("City: %s\n", json_object_get_string(city)); json_object_put(parsed_json); return 0; }
在這個例子中,我們定義一個JSON字符串,并使用json_tokener_parse函數將其解析。該函數將JSON字符串解析為json_object類型的變量。接下來,通過json_object_object_get_ex函數,我們分別獲取JSON對象中的三個值:name,age和city。最后,我們使用json_object_get_string和json_object_get_int函數輸出獲取的值。
除此之外,我們還可以使用json_object_new_*函數創建新的JSON對象,并使用json_object_get_*和json_object_set_*函數獲取和設置JSON對象的值。
下一篇vue 無限滾動優化