JSON(JavaScript Object Notation)是一種輕量級的數據交換格式,而C語言則是一種強有力的編程語言。結合使用這兩種工具,可以很方便地將C語言中的數據轉換為JSON格式,再發送到服務器端。以下是一個簡單的例子:
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <jansson.h> int main(void) { json_t *root; json_t *elem; json_t *arr; root = json_object(); json_object_set_new(root, "name", json_string("Alice")); json_object_set_new(root, "age", json_integer(20)); arr = json_array(); json_array_append_new(arr, json_string("reading")); json_array_append_new(arr, json_string("music")); elem = json_object(); json_object_set_new(elem, "hobby", arr); json_object_set_new(root, "extra", elem); char *json_str = json_dumps(root, JSON_INDENT(4)); printf("%s\n", json_str); /* 發送 json_str 至服務器端 */ json_decref(root); free(json_str); return 0; }
首先,我們需要使用 json_t 類型定義變量,在堆上分配內存。然后,我們使用 json_object_set_new 函數將鍵值對添加到 JSON 對象中。最后,我們將 JSON 對象轉換為字符串,以便將其發送到服務器端。在發送完成后,我們需要釋放內存( json_decref )。
上一篇c 保存數據為json
下一篇python 網頁時間戳