gpt4 book ai didi

c - jansson-更改文件中的 json 值

转载 作者:太空宇宙 更新时间:2023-11-04 07:52:22 25 4
gpt4 key购买 nike

我有一个 json 文件。并且,文件已成功加载。但是,我想更改如下值并保存修改后的 json 文件。但是,该值根本没有改变和保存。我该怎么办?

来自/home/pi/desktop/test.json

{
"new_one": 1,
"new_two" : "do not",
"new_three" : true
}

到/home/pi/desktop/test.json

{
"new_one": 234,
"new_two" : "do",
"new_three" : false
}

所以,我做到了

int main()
{

json_t *json;
json_error_t error;
char *pos;

json_t *obj = json_object();

int rc =0 ;
json = json_load_file("./test.json", 0, &error);

if (!json)
{
fprintf(stderr, "process : json error on line %d: %s\n", error.line, error.text);
rc = 1;
}

const char *key;
json_t *value;

void *iter = json_object_iter( json );

while( iter )
{
key = json_object_iter_key(iter);
value = json_object_iter_value(iter);
if(!strcmp(key, "new_one")){
printf("Change Value\n" );
json_object_set(iter, "new_one", json_integer(1234));
}
if(!strcmp(key, "new_three")){
printf("Change Value\n" );
json_object_set(iter, "new_three", json_string("alert"));
}

iter = json_object_iter_next(json, iter);
}
return 0;
}

最佳答案

您缺少对 json_dump_file() 的调用,该调用会将修改后的 JSON 内容保存到文件中。所以,在你的 while() 循环之后,添加这个:

rc = json_dump_file(json, "./test.json", 0);
if (rc) {
fprintf(stderr, "cannot save json to file\n");
}

关于c - jansson-更改文件中的 json 值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53038740/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com