从 boost::property_tree 读取数组出现空白
Posted
技术标签:
【中文标题】从 boost::property_tree 读取数组出现空白【英文标题】:Reading array from boost::property_tree comes up blank 【发布时间】:2012-05-16 17:23:55 【问题描述】:我正在尝试使用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"
我得到“10.0”作为字符串输出,
当paramName
是"Object1.initPos"
我得到一个空字符串,
如果paramName
是树中不存在的东西,则返回"Not Found"
。
【问题讨论】:
未知是否相关,但我使用的是 boost 1.49.0 【参考方案1】:首先,确保提供的 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
【讨论】:
以上是关于从 boost::property_tree 读取数组出现空白的主要内容,如果未能解决你的问题,请参考以下文章
boost.property_tree读取中文乱码问题正确的解决方式
boost::property_tree::json_parser::read_json 如果路径包含西里尔字符则无法读取文件
如何从 boost::property_tree 获取枚举?