gpt4 book ai didi

c - 在 C 中解析 JSON 数组

转载 作者:太空宇宙 更新时间:2023-11-04 04:34:55 25 4
gpt4 key购买 nike

我从服务器返回了以下 JSON,我正在尝试访问 Values(时间戳/数据):

{
"queries": [
{
"sample_size": 1,
"results": [
{
"name": "data",
"group_by": [
{
"name": "type",
"type": "number"
}
],
"tags": {
"hostname": [
"host"
]
},
"values": [
[
1438775895302,
143
]
]
}
]
}
]
}

我正在使用 json-c ,并且我使用的是 complete json parser 的略微修改版本.但是,当我尝试使用 json_parse_array 访问 values 部分时,我不断收到 segmentation fault (core dumped)

我将如何访问 values 部分?

最佳答案

感谢@wiseveri 的提示,通过以下内容成功访问了 values 部分:

// gcc json_c_test.c -ljson-c -o json_c_test && clear && ./json_c_test

#include <json/json.h>
#include <stdio.h>

void json_parse_input( json_object *jobj )
{
int exists, i, j, k, l;
char *results;
json_object *queriesObj, *resultsObj, *valuesObj, *tmpQueries, *tmpResults, *tmpValues, *tmpSeparateVals;

/* Get query key */
exists = json_object_object_get_ex( jobj, "queries", &queriesObj );
if ( FALSE == exists )
{
printf( "\"queries\" not found in JSON\n" );
return;
}

/* Loop through array of queries */
for ( i = 0; i < json_object_array_length( queriesObj ); i++ )
{
tmpQueries = json_object_array_get_idx( queriesObj, i );

/* Get results info */
exists = json_object_object_get_ex( tmpQueries, "results", &resultsObj );
if ( FALSE == exists )
{
printf( "\"results\" not found in JSON\n" );
return;
}

/* Loop through array of results */
for ( j = 0; j < json_object_array_length( resultsObj ); j++ )
{
tmpResults = json_object_array_get_idx ( resultsObj, j );

/* Get values */
exists = json_object_object_get_ex( tmpResults, "values", &valuesObj );
if ( FALSE == exists )
{
printf( "\"values\" not found in JSON\n" );
return;
}

/* Loop through array of array of values */
for ( k = 0; k < json_object_array_length( valuesObj ); k++ )
{
tmpValues = json_object_array_get_idx ( valuesObj, k );

/* Loop through array of values */
for ( l = 0; l < json_object_array_length( tmpValues ); l++ )
{
tmpSeparateVals = json_object_array_get_idx ( tmpValues, l );
printf( "Values:[%d] = %s \n", l, json_object_to_json_string( tmpSeparateVals ) );
}
}
}
}
}

int main()
{
json_object *jobj;

char * string = " { \"queries\" : [ { \"sample_size\" : 1, \"results\" : [ { \"name\" : \"data\", \"group_by\" : [{ \"name\" : \"type\", \"type\" : \"number\" }], \"tags\" : { \"hostname\" : [ \"host\" ]}, \"values\": [[1438775895302, 143]] } ], } ] } ";
printf ( "JSON string: %s\n\n", string );

jobj = json_tokener_parse( string );
json_parse_input( jobj );
}

关于c - 在 C 中解析 JSON 数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31836167/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com