Boost を使用した JSON のシリアル化とデシリアル化 質問する

Boost を使用した JSON のシリアル化とデシリアル化 質問する

私は C++ 初心者です。std::Mapを使用して型のデータをシリアル化および逆シリアル化する最も簡単な方法は何ですかboost。 を使用しての例をいくつか見つけましたPropertyTreeが、私にはよくわかりません。

ベストアンサー1

property_treeはキーをパスとして解釈することに注意してください。たとえば、ペア "ab"="z" を入力すると、{"ab":"z"} ではなく {"a":{"b":"z"}} JSON が作成されます。それ以外の場合は、 の使用はproperty_tree簡単です。次に小さな例を示します。

#include <sstream>
#include <map>
#include <boost/property_tree/ptree.hpp>
#include <boost/property_tree/json_parser.hpp>

using boost::property_tree::ptree;
using boost::property_tree::read_json;
using boost::property_tree::write_json;

void example() {
  // Write json.
  ptree pt;
  pt.put ("foo", "bar");
  std::ostringstream buf; 
  write_json (buf, pt, false);
  std::string json = buf.str(); // {"foo":"bar"}

  // Read json.
  ptree pt2;
  std::istringstream is (json);
  read_json (is, pt2);
  std::string foo = pt2.get<std::string> ("foo");
}

std::string map2json (const std::map<std::string, std::string>& map) {
  ptree pt; 
  for (auto& entry: map) 
      pt.put (entry.first, entry.second);
  std::ostringstream buf; 
  write_json (buf, pt, false); 
  return buf.str();
}

おすすめ記事