JSON(JavaScript Object Notation)是一種輕量級的數據交換格式,它易于閱讀和編寫,同時也易于機器解析和生成。在C語言中,我們可以使用第三方的JSON庫來讀取和操作JSON數據。
在C語言中,常見的JSON庫有cJSON、jansson等。這里以cJSON為例,介紹如何導入和使用該庫。
#include "cJSON.h" int main() { // 解析JSON字符串 char* json_str = "{ \"name\":\"John\", \"age\":30, \"city\":\"New York\" }"; cJSON* root = cJSON_Parse(json_str); if (root == NULL) { printf("Error before: [%s]\n", cJSON_GetErrorPtr()); return 1; } // 獲取JSON中name的值 cJSON* name = cJSON_GetObjectItem(root, "name"); printf("name: %s\n", name->valuestring); // 獲取JSON中age的值 cJSON* age = cJSON_GetObjectItem(root, "age"); printf("age: %d\n", age->valueint); // 獲取JSON中city的值 cJSON* city = cJSON_GetObjectItem(root, "city"); printf("city: %s\n", city->valuestring); return 0; }
以上代碼通過cJSON_Parse函數解析一個JSON字符串,并通過cJSON_GetObjectItem函數獲取JSON中的值。
除此之外,cJSON還提供了很多其他的操作函數,例如創建JSON對象、添加JSON對象、刪除JSON對象等等。可以根據具體需求進行操作。