boost json 解析数组

利用boost 自带的json库,解析数组,json格式如下:

{
  "roomId":"room_123",
  "pubUid":"uid1",
  "subList":[
    "uid2",
    "uid3",
    "uid4"
  ]
}

解析代码:

#include <boost/asio.hpp>
#include <boost/shared_ptr.hpp>
#include <boost/thread.hpp>
#include <boost/thread/mutex.hpp>
#include <boost/bind.hpp>
#include <iostream>
#include <map>
#include <vector>
#include <boost/property_tree/ptree.hpp>
#include <boost/property_tree/json_parser.hpp>
int main(int argc, char *argv[])
{
     
    string json_info = json数据;
    boost::property_tree::ptree parse_root;
    boost::property_tree::ptree positions_array;
    std::stringstream strStream(json_info);
    boost::property_tree::read_json(strStream, parse_root);
    string room_id, pubUid;
    vector<string> vec_subId;
    try
    {
        room_id = parse_root.get<string>("roomId");
        pubUid = parse_root.get<string>("pubUid");
        positions_array = parse_root.get_child("subList");
        boost::property_tree::ptree::iterator pos = positions_array.begin();
        for (; pos != positions_array.end(); ++pos)
        {
            boost::property_tree::ptree item = pos->second;
            string uid = item.get<string>("");
            vec_subId.push_back(uid);
        }
    }
    catch (boost::property_tree::ptree_error const &e)
    {
        return 0;
    }
}  

 

评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

致一

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值