- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在以下使用 C++ Boost 属性树的代码中,我希望得到一个漂亮的输出,例如
{
"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);
关于C++:美化boost ptree json_parser,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45487818/
在以下使用 C++ Boost 属性树的代码中,我希望得到一个漂亮的输出,例如 { "fruit": { "apple": "true", "orange": "true" }
我想使用 boost 的 json_parser 来读取 json 数据,我正在尝试找出我需要的依赖项。我在“boost\property_tree\detail\json_parser\read.h
我正在使用 json_parse 函数来解析从 Ajax 调用返回的数据。这在 FF 中效果很好,但在 IE7 中则不然。它非常非常慢,有时甚至会卡住浏览器。由于各种原因,我无法更改应用程序的逻辑。有
我有一个 JSON 文件,如下所示: [{"id":"1","this":"that"},{"id":"2","that":"this"}] 我对如何改编 boost 文档中的 XML 5 分钟示例有
我正在尝试从 boost::property_tree:ptree 对象中的字符串中保存一些数据: const char* data = "Here are json params"; boost:p
简介 std::string text = "á"; “á”是两个字节的字符(假设是 UTF-8 编码)。 所以下一行打印 2。 std::cout ("text", text); std::stri
我有以下代码: giant-data-barf.txt 文件,顾名思义,是一个巨大的文件(目前为 5.4mb,但可能会达到数 GB) 当我执行此脚本时,出现以下错误: Fatal error: Al
https://github.com/douglascrockford/JSON-js/blob/master/json_parse.js在此链接中,Douglas Crockford 创建了一个 j
我非常快速地进行了测试,看看是否可以将我的 Twitter 提要通过管道传输到 boost 的 JSON 解析器。没有骰子。我的 JSON 解析器无法处理以下行: "profile_backgroun
是否可以打开路径中包含西里尔字母部分的文件?我能够读取/写入文件的西里尔内容,但我不知道如何打开文件 json_parser::read_json 只有 std::string 作为参数,没有 std
我试图读取压缩的 json 并遇到类型转换问题,这是代码 boost::iostreams::filtering_streambuf in; std::istringstream iss(std::i
我是一名优秀的程序员,十分优秀!