我正在使用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
}
答案 0 :(得分:1)
我的问题是strtoll。我不得不重新定义它。