我正在使用C jansson库http://www.digip.org/jansson/
很容易使用https://jansson.readthedocs.org/en/2.7/tutorial.html#the-program
但是我无法从JSON字符串中得到一个简单的int
。我可以成功地接收并load
一个JSON字符串(因为我没有错误,什么都不是null
),但是当我使用janssonget
函数获取int
时,即使使用步骤和断点,jansson函数进程an in也不会返回0,但我的int
始终为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
}
最佳答案
我的问题是斯特特尔。我不得不重新定义它。
关于c - 提取jansson JSON数据,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/35807391/