JSON(JavaScript Object Notation)是一種輕量級(jí)的數(shù)據(jù)交換格式,用于在 Web 應(yīng)用程序之間傳遞數(shù)據(jù)。在 C 編程語言中,JSON 可以通過 JSON-C 庫來進(jìn)行實(shí)例化。
JSON-C 庫提供了一組 API 用于創(chuàng)建、解析和序列化 JSON 數(shù)據(jù)。以下是一個(gè)使用 JSON-C 庫實(shí)例化 JSON 數(shù)據(jù)的示例:
#include <stdio.h> #include <stdlib.h> #include <json-c/json.h> int main() { // 創(chuàng)建 JSON 對(duì)象 struct json_object *jobj = json_object_new_object(); // 添加鍵值對(duì) json_object_object_add(jobj, "name", json_object_new_string("張三")); json_object_object_add(jobj, "age", json_object_new_int(20)); json_object_object_add(jobj, "gender", json_object_new_string("男")); // 將 JSON 對(duì)象序列化為字符串 const char *json_str = json_object_to_json_string(jobj); // 輸出 JSON 字符串 printf("JSON string:\n%s\n", json_str); // 釋放 JSON 對(duì)象 json_object_put(jobj); return 0; }
上述代碼使用 json_object_new_object 函數(shù)創(chuàng)建一個(gè) JSON 對(duì)象,通過 json_object_object_add 函數(shù)向 JSON 對(duì)象中添加鍵值對(duì)。最后,使用 json_object_to_json_string 函數(shù)將 JSON 對(duì)象序列化為字符串。
以上是使用 JSON-C 庫實(shí)例化 JSON 數(shù)據(jù)的簡單示例。