C語言是一種強大的編程語言,它能夠解析網頁中的json數據。JSON是一種輕量級數據交換格式,常用于前后端之間的數據傳輸。在C語言中,我們可以使用一些庫來解析JSON。
#include <stdio.h> #include <stdlib.h> #include <jansson.h> int main() { const char *json_str = "{\"name\":\"John\",\"age\":30,\"city\":\"New York\"}"; json_error_t error; json_t *root = json_loads(json_str, JSON_DECODE_ANY, &error); if (!root) { fprintf(stderr, "error: on line %d: %s\n", error.line, error.text); return 1; } const char *name; json_int_t age; const char *city; json_unpack(root, "{s:s, s:I, s:s}", "name", &name, "age", &age, "city", &city); printf("Name: %s\n", name); printf("Age: %ld\n", age); printf("City: %s\n", city); json_decref(root); return 0; }
上面的代碼用到了jansson庫,首先我們定義了一個JSON字符串,然后使用json_loads函數將其解析為一個JSON對象,如果解析失敗,則會返回錯誤信息。接著我們通過json_unpack函數和格式化字符串獲取JSON對象中的數據,并將其打印出來。最后,我們需要使用json_decref函數釋放JSON對象的內存。
總之,在C語言中解析JSON可以幫助我們獲取網頁中的數據,為我們的程序提供完善的功能。
下一篇vue2019直播