c++ - serialize - serializar json c#
Serialización y deserialización json con impulso (1)
Tenga en cuenta que property_tree
interpreta las claves como rutas, por ejemplo, poner el par "ab" = "z" creará un {"a": {"b": "z"}} JSON, no un {"ab": "z" }. De lo contrario, usar property_tree
es trivial. Aquí hay un pequeño ejemplo.
#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();
}
Soy novato en c++
. ¿Cuál es la forma más fácil de serializar y deserializar datos de tipo std::Map
usando boost
? He encontrado algunos ejemplos con el uso de PropertyTree
pero son oscuros para mí.