15

我有一个包含一些 JSON 内容的文件,如下所示:

{
  "frame":
  {
    "id": "0",
    "points":
    [
      [ "0.883", "0.553", "0" ],
      [ "0.441", "0.889", "0" ],
    ]
  },
  "frame":
  ...
}

如何使用 C++ 和 Boost ptree 解析双精度数组的值?

4

1 回答 1

25

使用迭代器,卢克。

首先,您必须解析文件:

boost::property_tree::ptree doc;
boost::property_tree::read_json("input_file.json", doc);

...现在,因为您似乎在顶级字典中有多个“框架”键,您必须遍历它们:

BOOST_FOREACH (boost::property_tree::ptree::value_type& framePair, doc) {
    // Now framePair.first == "frame" and framePair.second is the subtree frame dictionary
} 

遍历行和列是相同的:

BOOST_FOREACH (boost::property_tree::ptree::value_type& rowPair, frame.get_child("points")) {
    // rowPair.first == ""
    BOOST_FOREACH (boost::property_tree::ptree::value_type& itemPair, rowPair.second) {
        cout << itemPair.second.get_value<std::string>() << " ";
    }
    cout << endl;
}

我没有测试代码,但这个想法会起作用:-)

于 2013-06-15T14:39:28.127 回答