2018年7月20日 星期五

C語言中從檔案讀取JSON格式,再把JSON格式寫入檔案

目的 - json object to file and from file

API :  json_object_from_file() 及 json_object_to_file()

簡單範例: 

json_object *obj = NULL;
obj = json_object_from_file("config.txt");

json_object_to_file("config.txt",obj);
json_object_put(obj);
return 0;