我正在尝试使用in this question显示的方法从boost::property_tree
读取数组数据。在该示例中,首先将数组读取为字符串,转换为字符串流,然后读入数组。在实现该解决方案时,我注意到我的字符串是空的。
示例输入(json):
"Object1"
{
"param1" : 10.0,
"initPos" :
{
"":1.0,
"":2.0,
"":5.0
},
"initVel" : [ 0.0, 0.0, 0.0 ]
}
这两个数组符号都被boost json解析器解释为数组。我确信数据存在于属性树中,因为在调用json writer时,数组数据存在于输出中。
这是失败的一个例子:
std::string paramName = "Object1.initPos";
tempParamString = _runTree.get<std::string>(paramName,"Not Found");
std::cout << "Value: " << tempParamString << std::endl;
当paramName
为"Object1.param1"
时,我得到&#34; 10.0&#34;输出为字符串,
当paramName
为"Object1.initPos"
时,我会收到一个空字符串,
如果paramName
是树中不存在的内容,则会返回"Not Found"
。
答案 0 :(得分:0)
首先,确保提供的JSON有效。它看起来有一些问题。 接下来,您不能将Object1.initPos作为字符串。它的类型是boost :: property_tree :: ptree。您可以使用get_child获取它并进行处理。
#include <algorithm>
#include <string>
#include <sstream>
#include <boost/property_tree/ptree.hpp>
#include <boost/property_tree/json_parser.hpp>
using namespace std;
using namespace boost::property_tree;
int _tmain(int argc, _TCHAR* argv[])
{
try
{
std::string j("{ \"Object1\" : { \"param1\" : 10.0, \"initPos\" : { \"\":1.0, \"\":2.0, \"\":5.0 }, \"initVel\" : [ 0.0, 0.0, 0.0 ] } }");
std::istringstream iss(j);
ptree pt;
json_parser::read_json(iss, pt);
auto s = pt.get<std::string>("Object1.param1");
cout << s << endl; // 10
ptree& pos = pt.get_child("Object1.initPos");
std::for_each(std::begin(pos), std::end(pos), [](ptree::value_type& kv) {
cout << "K: " << kv.first << endl;
cout << "V: " << kv.second.get<std::string>("") << endl;
});
}
catch(std::exception& ex)
{
std::cout << "ERR:" << ex.what() << endl;
}
return 0;
}
输出:
10.0
K:
V: 1.0
K:
V: 2.0
K:
V: 5.0