C語言是一門程序設計語言,具有強大的操作系統支持,其中包括操作文件和網絡連接的功能。JSON是一種廣泛使用的開放式數據格式,適用于HTTP請求和響應數據傳輸。在C語言中,我們可以通過新建JSON對象來處理JSON數據。
#include <stdio.h> #include <jansson.h> int main() { json_t *root; json_error_t error; root = json_load_file("data.json", 0, &error); //加載JSON文件 if(!root) { fprintf(stderr, "error: on line %d: %s\n", error.line, error.text); //錯誤處理 return 1; } json_t *object = json_object(); //創建JSON對象 json_object_set_new(object, "name", json_string("John")); //添加鍵值對 json_object_set_new(object, "age", json_integer(30)); json_object_set_new(object, "email", json_string("john@example.com")); const char *json_str = json_dumps(object, JSON_INDENT(2)); //將JSON對象轉換為字符串 printf("%s\n", json_str); json_decref(object); //釋放JSON對象 return 0; }
在上面的代碼中,我們使用了jansson庫中的json_t類型來存儲JSON數據。首先,我們使用json_load_file()方法從文件中讀取JSON數據,并將其存儲在root變量中。然后,我們調用json_object()方法創建一個JSON對象,并使用json_object_set_new()方法添加鍵值對到對象中。最后,我們使用json_dumps()方法將JSON對象轉換為字符串,并使用printf()方法打印該字符串。最后,我們使用json_decref()方法釋放JSON對象。