boost解析json(2)
#include<iostream> #include <boost/property_tree/ptree.hpp> #include <boost/property_tree/json_parser.hpp> using namespace std; using namespace boost::property_tree; int main() { std::string json = "{\"A\":1,\"B\":{\"C\":2,\"D\":3},\"E\":[{\"F\":4},{\"F\":5}]}"; boost::property_tree::ptree pt,child1,child2 ; std::stringstream ss(json) ; boost::property_tree::read_json(ss, pt); child1 = pt.get_child("B"); //针对树遍历 for(auto c:child1) { cout<< c.first<<c.second.data()<<endl; } child2 = pt.get_child("E"); for (ptree::iterator it = child2.begin(); it != child2.end(); ++it) { auto pt1 = it->second;//first为空 #if 0//输出first,second for (auto c: pt1) { cout<<c.first<<c.second.data(); } #endif //遍历数组F值,直接获取树里面的节点值 auto i = pt1.get<int>("F"); cout<<" F = "<< i <<endl; } system("pause"); return 0; }
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。