C++:美化助推树json_parser

C++: Beautify boost ptree json_parser

本文关键字:json parser C++      更新时间:2023-10-16

在以下使用 Boost 属性树的代码中C++我希望有一个漂亮的输出,例如

{
"fruit": {
"apple": "true",
"orange": "true"
},
"animal": {
"cat": "true",
"dog": "true",
"bird": {
"duck": "true"
}
}
}

而实际上我收到:

{"fruit":{"apple":"true","orange":"true"},"animal":
{"cat":"true","dog":"true","bird":{"duck":"true"}}}

有没有内置方法来美化这个json结果?

#include <iostream>
#include <string>
#include <sstream>
#include <boost/property_tree/ptree.hpp>
#include <boost/property_tree/json_parser.hpp>
using boost::property_tree::ptree;
using boost::property_tree::basic_ptree;

int main()
{
ptree root;
root.put("fruit.apple", "true");
root.put("fruit.orange", "true");
root.put("animal.cat", "true");
root.put("animal.dog", "true");
root.put("animal.bird.duck", "true");
std::ostringstream buf;
write_json(buf, root, false);
buf << std::endl;
std::string json = buf.str();
std::cout<<json<<std::endl;
return 0;
}

您是否尝试过为pretty参数传递true

write_json(buf, root, true);