提取jansson JSON数据

时间:2016-03-04 22:40:39

标签: c json

我正在使用C jansson库http://www.digip.org/jansson/

使用https://jansson.readthedocs.org/en/2.7/tutorial.html#the-program

非常简单

但我无法从我的JSON字符串中获得简单的int。我可以成功接收并load一串JSON(因为我没有错误,没有任何内容null)但是当我使用jansson get函数获取int时,我的int始终为0,即使使用步和断点,jansson函数进程中的返回0。

JSON字符串如下所示:

{"type":3}

以下是代码:

static void foo(json_t *jsonRoot) {
    // json root is error checked even before this, and is not null
    if (jsonRoot == NULL) {
        return;
    }

    // Trying to get type = 3
    json_t *j_type;
    int type = 0;

    j_type = json_object_get(jsonRoot, "type");
    if (!json_is_integer(j_type)) {
        printf("Not an int!\n");
        return;
    } else {
        // I get in to the else
        // json_integer_value has a its own internal check and 
        // will return 0 if the value is not an int, but it is not 
        // returning 0. It is running the macro json_to_integer(json)->value
        type = json_integer_value(j_type);
    }

    printf("type is %d\n", type);
    // type is 0
}

1 个答案:

答案 0 :(得分:1)

我的问题是strtoll。我不得不重新定义它。