我有一个使用jsoncpp解码JSON字符串的C
++应用程序。我创建了以下函数,但仅向我显示了顶级对象…
如何获取转储整个对象列表的信息?
- 功能 -
SaveJSON( json_data );
bool CDriverConfigurator::PrintJSONTree( Json::Value & root, unsigned short depth /* = 0 */)
{
printf( " {type=[%d], size=%d} ", root.type(), root.size() );
if( root.size() > 0 ) {
for( Json::ValueIterator itr = root.begin() ; itr != root.end() ; itr++ ) {
PrintJSONTree( itr.key(), depth+1 );
}
return true;
}
// Print depth.
for( int tab = 0 ; tab < depth; tab++) {
printf( "-");
}
if( root.isString() ) {
printf( " %s", root.asString().c_str() );
} else if( root.isBool() ) {
printf( " %d", root.asBool() );
} else if( root.isInt() ) {
printf( " %d", root.asInt() );
} else if( root.isUInt() ) {
printf( " %d", root.asUInt() );
} else if( root.isDouble() ) {
printf( " %f", root.asDouble() );
}
else
{
printf( " unknown type=[%d]", root.type() );
}
printf( "\n" );
return true;
}
-输入----
{
"modules":[
{
"config":{
"position":[
129,
235
]
},
"name":"Modbus Task",
"value":{
"DeviceID":"This is the name",
"Function":"01_READ_COIL_STATUS",
"Length":"99",
"Scan":"111",
"Type":"Serve"
}
},
{
"config":{
"position":[
13,
17
]
},
"name":"Modbus Connection",
"value":{
"Baud":"9600",
"timeout":"2.5"
}
},
{
"config":{
"position":[
47,
145
]
},
"name":"Modbus Device",
"value":{
"DeviceID":"55"
}
},
{
"config":{
"position":[
363,
512
]
},
"name":"Function Something",
"value":{
}
},
{
"config":{
"position":[
404,
701
]
},
"name":"Function Something",
"value":{
}
}
],
"properties":{
"Blarrg":"",
"description":"",
"name":"Modbus"
},
"wires":[
{
"src":{
"moduleId":1,
"terminal":"modbus.connection.output"
},
"tgt":{
"moduleId":2,
"terminal":"modbus.connection.input"
}
},
{
"src":{
"moduleId":2,
"terminal":"modbus.device.output"
},
"tgt":{
"moduleId":0,
"terminal":"modbus.device.output"
}
},
{
"src":{
"moduleId":3,
"terminal":"dataOut"
},
"tgt":{
"moduleId":4,
"terminal":"dataIn"
}
},
{
"src":{
"moduleId":3,
"terminal":"dataIn"
},
"tgt":{
"moduleId":0,
"terminal":"data1"
}
}
]
}
-输出-
{type=[7], size=3} {type=[4], size=0} - modules
{type=[4], size=0} - properties
{type=[4], size=0} - wires
您可能会遇到一些错误,这些错误似乎与您对递归或JSON的key->
value性质没有很好的了解以及如何与所使用的库相关联。我根本没有测试过此代码,但它应该可以更好地工作。
void CDriverConfigurator::PrintJSONValue( const Json::Value &val )
{
if( val.isString() ) {
printf( "string(%s)", val.asString().c_str() );
} else if( val.isBool() ) {
printf( "bool(%d)", val.asBool() );
} else if( val.isInt() ) {
printf( "int(%d)", val.asInt() );
} else if( val.isUInt() ) {
printf( "uint(%u)", val.asUInt() );
} else if( val.isDouble() ) {
printf( "double(%f)", val.asDouble() );
}
else
{
printf( "unknown type=[%d]", val.type() );
}
}
bool CDriverConfigurator::PrintJSONTree( const Json::Value &root, unsigned short depth /* = 0 */)
{
depth += 1;
printf( " {type=[%d], size=%d}", root.type(), root.size() );
if( root.size() > 0 ) {
printf("\n");
for( Json::Value::const_iterator itr = root.begin() ; itr != root.end() ; itr++ ) {
// Print depth.
for( int tab = 0 ; tab < depth; tab++) {
printf("-");
}
printf(" subvalue(");
PrintJSONValue(itr.key());
printf(") -");
PrintJSONTree( *itr, depth);
}
return true;
} else {
printf(" ");
PrintJSONValue(root);
printf( "\n" );
}
return true;
}
问题内容: 从Javascript 1.7开始,有一个Iterator对象,它允许这样做: node.js中是否有类似的东西? 现在我正在使用: 但这通过将所有对象密钥存储在中而产生大量开销。 问题答案: 您想要的是对象或数组上的延迟迭代。这在ES5中是不可能的(因此在node.js中是不可能的)。我们最终会得到这个。 唯一的解决方案是找到一个扩展V8的节点模块,以实现迭代器(可能还有生成器)。我
问题内容: 我正在尝试遍历JSON对象以导入数据,即标题和链接。我似乎无法掌握过去的内容。 JSON: 我尝试使用字典: 此代码仅在之前打印信息。( 忽略贾斯汀·比伯的曲目 :) 问题答案: 您加载JSON数据有些脆弱。代替: 您实际上应该这样做: 您不应该将“ JSON对象”视为什么。您所拥有的是清单。该列表包含两个字典。字典包含各种键/值对,所有字符串。当您这样做时,您将要求列表中的第一个字典
问题内容: 我在C#中使用JSON.NET解析来自Klout API的响应。我的回答是这样的: 如您所见,它包含5个标签。也许下次是6或1或其他一些数字。我想遍历JSON并获取每个标签的值。我不知道会有多少个循环。我该如何解决? 问题答案: 要么
问题内容: 我正在尝试遍历json文件并获取所需的详细信息,这是我的json 我的java代码 如您在代码中所看到的,我正在导入json文件并尝试获取下一个元素并从中打印组件,我还应该同时打印标头,行列式和行列式值。谢谢 问题答案: 您没有数组-您拥有名称为“ 000”等的 属性 。数组如下所示: 请注意,-表示JSON数组。 您可以遍历using 的属性: 要么:
问题内容: 我陷入困境,我有一个这样的对象。 我不会遍历所有这些,所以我有这样的事情。 •东西 • 你好,世界 •您好溢出 •约翰·杜 •惊人的标题 • 谷歌一下 •我还是个孩子 •另一个 •他是我的兄弟 •她是我妈妈 •你永远不知道我是否要生孩子 问题是我不知道这个物体会走多深或里面有什么。因此我将无法手动进行。我在底部提供的小提琴中完成了一个基本的循环,但是我不知道如何自动循环这些循环并创建嵌
问题内容: 我很难找到一种以我想要的方式遍历此JSON对象的方法。我在这里只使用Javascript。 首先,这是对象 现在,我正在尝试基本方法来访问此对象上的每个dialog_trunk。理想情况下,我想遍历对象,并为每个主干显示其值。 我已经尝试过使用for循环动态地生成dialog_trunk的名称/编号,但是我无法使用对象名称的字符串来访问该对象,因此我不确定从何处去。 问题答案: 为此使