用c语言读取json文件,使用cJSON库修改json文件

我想要做的是读取json格式文件并修改它,然后将修改后的内容写入文件。

55 cJSON *root,*basicpara;

56 char *out;

57

58 root = dofile("basicparameter.cfg");

59 out = cJSON_Print(root);

60 printf("before modify:%s\n",out);

61 free(out);

62 basicpara = cJSON_GetObjectItem(root,"basicparameter");

63 cJSON_GetObjectItem(basicpara,"mode")->valueint = 0;

64 cJSON_GetObjectItem(basicpara,"TimeoutPoweron")->valueint = 10;

65

66 out = cJSON_Print(root);

67 printf("after modify:%s\n",out);

68 free(out);

69 //write_file("basicparameter.cfg",out);

70 cJSON_Delete(root);我很困惑为什么两个内容都是一样的......

before modify:{

"basicparameter": {

"mode": 1,

"nBefore": 2,

"nAfter": 2,

"LuxAutoOn": 50,

"LuxAutoOff": 16,

"TimeoutPoweron": 30

}

}

after modify:{

"basicparameter": {

"mode": 1,

"nBefore": 2,

"nAfter": 2,

"LuxAutoOn": 50,

"LuxAutoOff": 16,

"TimeoutPoweron": 30

}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值