Boost解析json格式文本

本文介绍如何使用Boost库进行JSON数据的生成与读取。通过示例代码展示了如何创建JSON文件并写入数据,以及如何从JSON文件中读取数据并解析。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

  • 需要包含的头文件
    #include <boost/property_tree/ptree.hpp>  
    #include <boost/property_tree/json_parser.hpp>  

    const std::string file_path="C:\\test.txt";  
  • 生成数据
    void generate_user()  
    {  
        boost::property_tree::ptree root;   
        boost::property_tree::ptree items;  



        boost::property_tree::ptree item1;  
        item1.put("ID","1");  
        item1.put("Name","wang");  
        items.push_back(std::make_pair("1",item1));  




        boost::property_tree::ptree item2;  
        item2.put("ID","2");  
        item2.put("Name","zhang");  
        items.push_back(std::make_pair("2",item2));  


        boost::property_tree::ptree item3;  
        item3.put("ID","3");  
        item3.put("Name","li");  
        items.push_back(std::make_pair("3",item3));  


        root.put_child("user",items);  
        boost::property_tree::write_json(file_path,root);  
    }  
  • 读取数据
    void read_user()  
    {  


        boost::property_tree::ptree root;  
        boost::property_tree::ptree items;  
        boost::property_tree::read_json<boost::property_tree::ptree>(file_path,root);  


        items=root.get_child("user");  
        for (boost::property_tree::ptree::iterator it=items.begin();it!=items.end();++it)  
        {  
    //遍历读出数据  
            string key=it->first;//key ID  
            string ID=it->second.get<string>("ID");  
            string Name=it->second.get<string>("Name");  


        }  
    }  
  • 文件中的数据
    {  
        "user": {  
            "1": { "ID": "1","Name": "wang"},  
            "2": { "ID": "2","Name": "zhang"},  
            "3": { "ID": "3", "Name": "li"}  
        }  
    }  
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值