JSONCPP串行显示后写入文件

时间:2018-11-06 05:07:53

标签: json

我希望按顺序显示Json File的缩进。

enter image description here

但是,在创建Json File之后,缩进被标记如下。

enter image description here

有什么办法可以显示串联的并行缩进?

1 个答案:

答案 0 :(得分:0)

我的代码是这个

Json::Value root;
Json::Value vec(Json::arrayValue);
Json::Value test1;


root["encoding"] = "UTF-8";
vec.append("python");
vec.append("c++");
vec.append("ruby");
root["indent"]["length"] = 3;
root["indent"]["use_space"] = true;

Json::StyledWriter writer;

std::string resultString=writer.write(root);