C JSON to List是一種將C語言中的JSON類型數據轉換為列表的方法。
#include <stdio.h> #include <jansson.h> int main() { char *json_string = "{\"name\":\"John\",\"age\":30,\"isStudent\":true}"; json_error_t error; json_t *root = json_loads(json_string, 0, &error); if (!root) { printf("error: on line %d: %s\n", error.line, error.text); return 1; } int size = json_object_size(root); json_t *value; const char *key; for (int i = 0; i< size; i++) { key = json_object_iter_key(json_object_iter(root)); value = json_object_iter_value(json_object_iter(root)); printf("%s: %s\n", key, json_string_value(value)); json_object_iter_next(root, json_object_iter(root)); } json_decref(root); return 0; }
在上面的代碼中,我們首先定義一個JSON字符串,然后使用json_loads()函數將其轉換為json_t類型的C語言數據。如果出現錯誤,會返回NULL。如果成功,我們就可以遍歷json_t對象并打印其鍵和值。最后使用json_decref()函數釋放json_t對象。
上述代碼演示了如何將C JSON類型的數據轉換為列表,從而方便我們在代碼中使用和操作JSON數據。