JSON是一種輕量級的數據交換格式,常用于前后端數據傳輸。在C語言中,使用json-c庫可以方便地生成JSON格式的數據。
// 示例代碼 #include <stdio.h> #include <json-c/json.h> int main() { // 創建JSON對象 json_object *obj = json_object_new_object(); // 添加Key-Value對 json_object *name = json_object_new_string("張三"); json_object_object_add(obj, "name", name); json_object *age = json_object_new_int(18); json_object_object_add(obj, "age", age); // 轉換為字符串 const char *str = json_object_to_json_string(obj); printf("json字符串為:%s\n", str); return 0; }
在這段代碼中,首先通過調用json_object_new_object()函數創建了一個JSON對象。隨后使用json_object_new_string()和json_object_new_int()函數分別創建了字符串和整形數據類型的JSON Value,并調用json_object_object_add()函數將Key-Value對添加到了JSON對象中。
最后,使用json_object_to_json_string()函數將生成的JSON對象轉換為字符串,輸出到控制臺上。
上一篇hive創建json格式
下一篇html 博客評論代碼