我正在尝试使用Boost的property tree
来解析JSON文件。这是JSON文件
{
"a": 1,
"b": [{
"b_a": 2,
"b_b": {
"b_b_a": "test"
},
"b_c": 0,
"b_d": [{
"b_d_a": 3,
"b_d_b": {
"b_d_c": 4
},
"b_d_c": "test",
"b_d_d": {
"b_d_d": 5
}
}],
"b_e": null,
"b_f": [{
"b_f_a": 6
}],
"b_g": 7
}],
"c": 8
}
和MWE
#include <iostream>
#include <fstream>
#include <boost/property_tree/ptree.hpp>
#include <boost/property_tree/json_parser.hpp>
namespace pt = boost::property_tree;
using namespace std;
int main()
{
boost::property_tree::ptree jsontree;
boost::property_tree::read_json("test.json", jsontree);
int v0 = jsontree.get<int>("a");
int v1 = jsontree.get<int>("c");
}
问题我目前知道如何阅读最外面的变量a
和c
。但是,我在阅读b_a, b_b_a, b_d_a
等其他级别时遇到了困难。我怎么能用Boost做到这一点?我不一定在寻找一个涉及循环的解决方案,只是想弄清楚如何“提取”内部变量。
如果它们是最佳的,我愿意使用其他库。但到目前为止,Boost对我很有希望。
答案 0 :(得分:2)
要获取嵌套元素,您可以使用路径语法,其中每个路径组件由"."
分隔。这里的事情有点复杂,因为子节点b
是一个数组。所以你不能没有循环。
const pt::ptree& b = jsontree.get_child("b");
for( const auto& kv : b ){
cout << "b_b_a = " << kv.second.get<string>("b_b.b_b_a") << "\n";
}
我还添加了代码以递归方式打印整个树,以便您可以看到JSON如何转换为ptree。数组元素存储为键/值对,其中键是空字符串。