C JSON格式化是在C語言中操作JSON數據格式的一種工具。使用C JSON格式化可以幫助程序員更加方便地操作JSON數據格式。
#include <stdio.h> #include <cJSON.h> int main() { char* json_str = "{\"name\": \"Jack\", \"age\": 25, \"isAdult\": true, \"address\": {\"province\":\"Beijing\", \"city\":\"Chaoyang\"}}"; cJSON* json = cJSON_Parse(json_str); char* formatted_str = cJSON_Print(json); printf("%s", formatted_str); cJSON_Delete(json); free(formatted_str); return 0; }
在上面的程序中,我們首先定義了一個JSON字符串,然后使用cJSON_Parse將其轉換為cJSON格式。
接著使用cJSON_Print將cJSON格式的數據格式化為字符串,并輸出到控制臺。
最后使用cJSON_Delete釋放cJSON對象,并使用free釋放字符串。
上一篇vue cli test
下一篇python 讀取mp3