3

我使用 Dave Gamble 的 cJSON 并遇到以下问题。如果我更改 cJSON 结构中的值,然后使用 cJSON_Print 命令,我不会得到更新的值,而是得到默认值。

#include <stdio.h>
#include <stdlib.h>
#include "cJSON.h"

void main(){
    cJSON *test = cJSON_Parse("{\"type\":       \"rect\", \n\"width\":      1920, \n\"height\":     1080, \n\"interlace\":  false,\"frame rate\": 24\n}");
    printf("cJSONPrint: %s\n  cJSONvalueint: %d\n",cJSON_Print(test), cJSON_GetObjectItem(test,"frame rate")->valueint);
    cJSON_GetObjectItem(test,"frame rate")->valueint=15;
    printf("cJSONPrint: %s\n  cJSONvalueint: %d\n",cJSON_Print(test), cJSON_GetObjectItem(test,"frame rate")->valueint);
}

这是我用于小测试的代码,它给了我这些结果:

cJSONPrint: {
    "type": "rect",
    "width":    1920,
    "height":   1080,
    "interlace":    false,
    "frame rate":   24
}

cJSONvalueint: 24
cJSONPrint: {
    "type": "rect",
    "width":    1920,
    "height":   1080,
    "interlace":    false,
    "frame rate":   24
}
cJSONvalueint: 15

有谁知道我做错了什么,以及如何使用 cJSON_Print 命令获得正确的值?

4

1 回答 1

4

我认为您需要使用cJSON_SetIntValue宏进行正确调用。

它在对象上设置 valueint 和 valuedouble 而不仅仅是 valueint。

#include <stdio.h>
#include <stdlib.h>
#include "cJSON.h"

void main(){
    cJSON *test = cJSON_Parse("{\"type\":       \"rect\", \n\"width\":      1920, \n\"height\":     1080, \n\"interlace\":  false,\"frame rate\": 24\n}");    
    printf("cJSONPrint: %s\n  cJSONvalueint: %d\n",cJSON_Print(test), cJSON_GetObjectItem(test,"frame rate")->valueint);

    cJSON_SetIntValue(cJSON_GetObjectItem(test, "frame rate"), 15);

    printf("cJSONPrint: %s\n  cJSONvalueint: %d\n",cJSON_Print(test), cJSON_GetObjectItem(test,"frame rate")->valueint);
}

这将返回:

$ ./test
cJSONPrint: {
        "type": "rect",
        "width":        1920,
        "height":       1080,
        "interlace":    false,
        "frame rate":   24
}
  cJSONvalueint: 24
cJSONPrint: {
        "type": "rect",
        "width":        1920,
        "height":       1080,
        "interlace":    false,
        "frame rate":   15
}
  cJSONvalueint: 15
于 2015-08-18T16:37:41.943 回答