2

我正在尝试使用此问题boost::property_tree中显示的方法从 a 中读取数组数据。在该示例中,数组首先作为字符串读取,转换为字符串流,然后读入数组。在实施该解决方案时,我注意到我的字符串是空的。

示例输入(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"

4

1 回答 1

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
于 2012-05-17T12:38:38.943 回答