4.8 C++ Boost 应用JSON解析库

本文涉及的产品
全局流量管理 GTM,标准版 1个月
公共DNS(含HTTPDNS解析),每月1000万次HTTP解析
云解析 DNS,旗舰版 1个月
简介: property_tree 是 Boost 库中的一个头文件库,用于处理和解析基于 XML、Json 或者 INFO 格式的数据。 property_tree 可以提供一个轻量级的、灵活的、基于二叉数的通用容器,可以处理包括简单值(如 int、float)和复杂数据结构(如结构体和嵌套容器)在内的各种数据类型。它可以解析数据文件到内存中,然后通过迭代器访问它们。

property_tree 是 Boost 库中的一个头文件库,用于处理和解析基于 XML、Json 或者 INFO 格式的数据。 property_tree 可以提供一个轻量级的、灵活的、基于二叉数的通用容器,可以处理包括简单值(如 int、float)和复杂数据结构(如结构体和嵌套容器)在内的各种数据类型。它可以解析数据文件到内存中,然后通过迭代器访问它们。

在 Boost 库中,property_tree 通常与 boost/property_tree/xml_parser.hpp、boost/property_tree/json_parser.hpp 或 boost/property_tree/info_parser.hpp 文件一起使用。这些文件分别提供了将 XML、JSON 或 INFO 格式数据解析为 property_tree 结构的功能。

首先我们需要自行创建一个测试config.json文件,后期的所有案例演示及应用都需要这个库的支持。

{
   
    "username": "lyshark",
    "age": 24,
  "get_dict": {
    "username": "lyshark" },
    "get_list": [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 ],
    "user_data":
     [
        [ "192.168.1.1", "root", "123456" ],
        [ "192.168.1.2", "admin", "123456" ],
        [ "192.168.1.3", "mysql", "123456" ]
    ],

    "user_dict":
     [
        {
    "uid": 1001, "uname": "admin" },
        {
    "uid": 1002, "uname": "lyshark" },
        {
    "uid": 1003, "uname": "root" }
    ],

    "get_root":
     [
        {
   
            "firstName": "admin",
            "lastName": "JackWang",
            "email": "admin@lyshark.com"
        },
        {
   
            "firstName": "lyshark",
            "lastName": "xusong",
            "email": "me@lyshark.com"
        }
    ],

  "get_my_list":
  {
   
        "get_uint": "[1,2,3,4,5,6,7,8,9,0]", 
        "get_string": "['admin','lyshark','root']"
    }
}

8.1 解析单个节点

代码中使用了 Boost C++ 库中的 property_tree 和 json_parser 来解析 JSON 文件。它的主要功能是读取指定路径下的 "c://config.json" 文件,然后获取其中的用户名和年龄信息(如果存在的话),并将它们输出到控制台。

#include <iostream>
#include <boost/property_tree/ptree.hpp>
#include <boost/property_tree/json_parser.hpp>

using namespace std;

int main(int argc, char* argv[])
{
   
  boost::property_tree::ptree ptr;
  boost::property_tree::read_json("c://config.json", ptr);

  cout << "是否存在: " << ptr.count("username") << endl;
  if (ptr.count("username") != 0)
  {
   
    std::string username = ptr.get<std::string>("username");
    std::cout << "用户名: " << username << std::endl;
  }

  if (ptr.count("age") != 0)
  {
   
    int age = ptr.get<int>("age");
    std::cout << "年龄: " << age << std::endl;
  }

  system("pause");
  return 0;
}

8.2 解析单个列表

代码中使用了 Boost C++ 库中的 property_tree 和 json_parser 来解析 JSON 文件。它的功能是读取指定路径下的 "c://config.json" 文件,并提取名为 "get_list" 的字段的值,并将其输出到控制台。

#include <iostream>
#include <vector>
#include <boost/property_tree/ptree.hpp>
#include <boost/property_tree/json_parser.hpp>

using namespace std;

void GetJson(std::string &filePath)
{
   
  boost::property_tree::ptree ptr;
  std::vector<std::string> item;

  boost::property_tree::read_json(filePath, ptr);

  // 先判断是否存在字段
  if (ptr.count("get_list") == 1)
  {
   
    boost::property_tree::ptree pChild = ptr.get_child("get_list");
    for (auto pos = pChild.begin(); pos != pChild.end(); ++pos)
    {
   
      // 迭代循环,将元素房补vector列表中
      std::string list = pos->second.get_value<string>();
      item.push_back(list);
    }
  }

  // 迭代输出vector中的数据
  for (auto x = item.begin(); x != item.end(); ++x)
  {
   
    cout << *x << endl;
  }
}

int main(int argc, char* argv[])
{
   
  GetJson(std::string("c://config.json"));
  system("pause");
  return 0;
}

8.3 解析嵌套列表

这段代码依然使用了 Boost C++ 库中的 property_tree 和 json_parser 来解析 JSON 文件。它的功能是读取指定路径下的 "c://config.json" 文件,并提取名为 "user_data" 的字段的第二列数据,并将其输出到控制台。

#include <iostream>
#include <vector>
#include <boost/property_tree/ptree.hpp>
#include <boost/property_tree/json_parser.hpp>

using namespace std;

void GetJson(std::string &filePath)
{
   
  boost::property_tree::ptree ptr;
  boost::property_tree::read_json(filePath, ptr);

  std::vector<std::string> item;

  for (auto& root_child : ptr.get_child("user_data"))
  {
   
    int count = 1;
    for (auto& x : root_child.second)
    {
   
      // count 用于指定需要那一列的记录
      if (count == 2)
      {
   
        std::string sub_data = x.second.get_value<std::string>();
        cout << "输出元素: " << sub_data << endl;
        item.push_back(sub_data);
      }
      count++;
    }
  }

  // 迭代输出vector中的数据
  for (auto x = item.begin(); x != item.end(); ++x)
  {
   
    cout << *x << endl;
  }
}

int main(int argc, char* argv[])
{
   
  GetJson(std::string("c://config.json"));
  system("pause");
  return 0;
}

8.4 解析多层字典

代码同样使用了 Boost C++ 库中的 property_tree 和 json_parser 来解析 JSON 文件。它的功能是读取指定路径下的 "c://config.json" 文件,并提取名为 "get_dict" 和 "user_dict" 的字段数据,并将其输出到控制台。

#include <iostream>
#include <vector>
#include <boost/property_tree/ptree.hpp>
#include <boost/property_tree/json_parser.hpp>

using namespace std;

void GetJson(std::string &filePath)
{
   
  boost::property_tree::ptree ptr;
  boost::property_tree::read_json(filePath, ptr);

  // 解析单一字典
  std::string username = ptr.get_child("get_dict").get<std::string>("username");
  cout << "姓名: " << username << endl;

  // 解析多层字典
  boost::property_tree::ptree root_ptr, item;
  root_ptr = ptr.get_child("user_dict");

  // 输出第二层
  for (boost::property_tree::ptree::iterator it = root_ptr.begin(); it != root_ptr.end(); ++it)
  {
   
    item = it->second;
    cout << "UID: " << item.get<int>("uid") << " 姓名: " << item.get<string>("uname") << endl;
  }
}

int main(int argc, char* argv[])
{
   
  GetJson(std::string("c://config.json"));
  system("pause");
  return 0;
}

第二种方式,通过多次迭代解析多层字典,并将字典中的特定value放入到vector容器内。

#include <iostream>
#include <string>
#include <boost/property_tree/ptree.hpp>
#include <boost/property_tree/json_parser.hpp>

using namespace std;
using namespace boost;
using namespace boost::property_tree;

int main(int argc, char *argv[])
{
   
  boost::property_tree::ptree ptr;
  boost::property_tree::read_json("C://config.json", ptr);

  // 判断是否存在get_root
  if (ptr.count("get_root") == 1)
  {
   
    std::vector<string> vecStr;
    std::string get_first_name;

    boost::property_tree::ptree p1, p2;

    // 读取到根节点
    p1 = ptr.get_child("get_root");

    // 循环枚举
    for (ptree::iterator it = p1.begin(); it != p1.end(); ++it)
    {
   
      // 获取到字典的value值
      p2 = it->second;
      get_first_name = p2.get<string>("firstName");

      // 将获取到的value转换为vector容器
      vecStr.push_back(get_first_name);
    }

    // 输出容器中的内容
    for (int x = 0; x < vecStr.size(); x++)
    {
   
      std::cout << vecStr[x] << std::endl;
    }
  }
  std::system("pause");
  return 0;
}

8.5 写出JSON文件

#include <iostream>
#include <boost/property_tree/ptree.hpp>
#include <boost/property_tree/json_parser.hpp>

using namespace std;

// 初始化字符串
bool InitJSON()
{
   
  string str = "{\"uuid\":1001,\"Student\":[{\"Name\":\"admin\"},{\"Name\":\"lyshark\"}]}";
  stringstream stream(str);
  boost::property_tree::ptree strTree;

  try{
   
    read_json(stream, strTree);
  }
  catch (boost::property_tree::ptree_error & e) {
   
    return false;
  }
  write_json("c://config.json", strTree);
  return true;
}

// 初始化列表
void InitArray()
{
   
  boost::property_tree::ptree ptr;
  boost::property_tree::ptree children;
  boost::property_tree::ptree child1, child2, child3;

  child1.put("", 1);
  child2.put("", 2);
  child3.put("", 3);

  children.push_back(std::make_pair("", child1));
  children.push_back(std::make_pair("", child2));
  children.push_back(std::make_pair("", child3));

  ptr.add_child("MyArray", children);
  write_json("c://Array.json", ptr);
}

// 初始化字典
void InitDict()
{
   
  boost::property_tree::ptree ptr;
  boost::property_tree::ptree children;
  boost::property_tree::ptree child1, child2, child3;

  child1.put("childkeyA", 1);
  child1.put("childkeyB", 2);

  child2.put("childkeyA", 3);
  child2.put("childkeyB", 4);

  child3.put("childkeyA", 5);
  child3.put("childkeyB", 6);

  children.push_back(std::make_pair("", child1));
  children.push_back(std::make_pair("", child2));
  children.push_back(std::make_pair("", child3));

  ptr.put("testkey", "testvalue");
  ptr.add_child("MyArray", children);

  write_json("c://MyDict.json", ptr);
}

int main(int argc, char* argv[])
{
   
  InitArray();
  InitDict();
  InitJSON();

  boost::property_tree::ptree ptr;
  boost::property_tree::read_json("c://config.json", ptr);

  // 修改uuid字段
  if (ptr.count("uuid") != 0)
  {
   
    ptr.put("uuid", 10002);
  }
  boost::property_tree::write_json("c://config.json", ptr);

  system("pause");
  return 0;
}

8.6 自定义结构解析

#include <iostream>
#include <string>
#include <vector>
#include <boost/assign.hpp>
#include <boost/lexical_cast.hpp>
#include <boost/algorithm/string.hpp>
#include <boost/property_tree/ptree.hpp>
#include <boost/property_tree/json_parser.hpp>

using namespace std;
using namespace boost;
using namespace boost::property_tree;

// 将整数转为int容器
std::vector<int> JsonIntToVector(std::string string_ptr)
{
   
  std::vector<std::string> vect;

  // 去掉里面的[]符号
  std::string item = boost::trim_copy_if(string_ptr, (boost::is_any_of("[") || boost::is_any_of("]")));
  boost::split(vect, item, boost::is_any_of(",,"), boost::token_compress_on);

  std::vector<int> ref;
  for (auto each : vect)
  {
   
    ref.push_back(boost::lexical_cast<int>(each));
  }
  return ref;
}

// 将字符串列表转为string容器
std::vector<std::string> JsonStringToVector(std::string string_ptr)
{
   
  std::vector<std::string> ref;
  std::vector<std::string> vect;

  std::string item = boost::trim_copy_if(string_ptr, (boost::is_any_of("[") || boost::is_any_of("]")));
  boost::split(vect, item, boost::is_any_of(",,"), boost::token_compress_on);

  for (auto each : vect)
  {
   
    // 去掉单引号
    std::string ea = boost::trim_copy_if(each, (boost::is_any_of("'") || boost::is_any_of("\"")));
    ref.push_back(ea);
  }
  return ref;
}

int main(int argc, char *argv[])
{
   
  boost::property_tree::ptree ptr;
  boost::property_tree::read_json("./config.json", ptr);

  // 输出特殊的整数
  std::string ustring = ptr.get_child("get_my_list").get<std::string>("get_uint");
  std::vector<int> ref_int = JsonIntToVector(ustring);
  for (int x = 0; x < ref_int.size(); x++)
  {
   
    std::cout << "输出整数: " << ref_int[x] << std::endl;
  }

  // 输出特殊的字符串
  std::string ustring1 = ptr.get_child("get_my_list").get<std::string>("get_string");
  std::vector<std::string> ref_string = JsonStringToVector(ustring1);
  for (int x = 0; x < ref_string.size(); x++)
  {
   
    std::cout << "输出字符串: " << ref_string[x] << std::endl;
  }

    std::system("pause");
    return 0;
}
相关文章
|
29天前
|
SQL 存储 JSON
SQL,解析 json
SQL,解析 json
62 8
|
16天前
|
JSON JavaScript Java
在Java中处理JSON数据:Jackson与Gson库比较
本文介绍了JSON数据交换格式及其在Java中的应用,重点探讨了两个强大的JSON处理库——Jackson和Gson。文章详细讲解了Jackson库的核心功能,包括数据绑定、流式API和树模型,并通过示例演示了如何使用Jackson进行JSON解析和生成。最后,作者分享了一些实用的代码片段和使用技巧,帮助读者更好地理解和应用这些工具。
在Java中处理JSON数据:Jackson与Gson库比较
|
26天前
|
SQL Oracle 关系型数据库
SQL整库导出语录:全面解析与高效执行策略
在数据库管理和维护过程中,整库导出是一项常见的需求,无论是为了备份、迁移还是数据分析,掌握如何高效、准确地导出整个数据库至关重要
|
2月前
|
XML JSON 网络协议
超级好用的C++实用库之字节流解析器
超级好用的C++实用库之字节流解析器
21 3
|
2月前
|
JSON API 数据格式
requests库中json参数与data参数使用方法的深入解析
选择 `data`或 `json`取决于你的具体需求,以及服务器端期望接收的数据格式。
177 2
|
25天前
|
缓存 网络协议 API
C/C++ StringToAddress(字符串转 boost::asio::ip::address)
通过上述步骤和示例代码,你可以轻松地在C++项目中实现从字符串到 `boost::asio::ip::address`的转换,从而充分利用Boost.Asio库进行网络编程。
45 0
|
28天前
|
JSON JavaScript API
商品详情数据接口解析返回的JSON数据(API接口整套流程)
商品详情数据接口解析返回的JSON数据是API接口使用中的一个重要环节,它涉及从发送请求到接收并处理响应的整个流程。以下是一个完整的API接口使用流程,包括如何解析返回的JSON数据:
|
2月前
|
缓存 网络协议 分布式数据库
超级好用的C++实用库之DNS解析
超级好用的C++实用库之DNS解析
45 0
|
2月前
|
设计模式 存储 算法
PHP中的设计模式:策略模式的深入解析与应用在软件开发的浩瀚海洋中,PHP以其独特的魅力和强大的功能吸引了无数开发者。作为一门历史悠久且广泛应用的编程语言,PHP不仅拥有丰富的内置函数和扩展库,还支持面向对象编程(OOP),为开发者提供了灵活而强大的工具集。在PHP的众多特性中,设计模式的应用尤为引人注目,它们如同精雕细琢的宝石,镶嵌在代码的肌理之中,让程序更加优雅、高效且易于维护。今天,我们就来深入探讨PHP中使用频率颇高的一种设计模式——策略模式。
本文旨在深入探讨PHP中的策略模式,从定义到实现,再到应用场景,全面剖析其在PHP编程中的应用价值。策略模式作为一种行为型设计模式,允许在运行时根据不同情况选择不同的算法或行为,极大地提高了代码的灵活性和可维护性。通过实例分析,本文将展示如何在PHP项目中有效利用策略模式来解决实际问题,并提升代码质量。
|
11天前
|
数据采集 JSON 数据处理
抓取和分析JSON数据:使用Python构建数据处理管道
在大数据时代,电商网站如亚马逊、京东等成为数据采集的重要来源。本文介绍如何使用Python结合代理IP、多线程等技术,高效、隐秘地抓取并处理电商网站的JSON数据。通过爬虫代理服务,模拟真实用户行为,提升抓取效率和稳定性。示例代码展示了如何抓取亚马逊商品信息并进行解析。
抓取和分析JSON数据:使用Python构建数据处理管道

推荐镜像

更多