我使用JSON
库生成一个POCO
文件,如下所示:
void writeToFile()
{
Poco::JSON::Object::Ptr json = new Poco::JSON::Object;
json->set("name", "foo");
json->set("address", "bar");
std::ostringstream oss;
Poco::JSON::Stringifier::stringify(json, oss);
std::ofstream ofs("output.json");
if (ofs.is_open() == true)
{
ofs << oss.str();
ofs.close();
}
}
output.json
包含:
{"name":"foo","address":"bar"}
POCO
上有什么方法可以美化JSON
?
这样输出将是:
{
"name" : "foo",
"address" : "bar"
}
答案 0 :(得分:2)
就像@Dmitry在评论中说的那样,stringify()
方法上的参数可以做到:
static void stringify(
const Dynamic::Var & any,
std::ostream & out,
unsigned int indent = 0,
int step = - 1,
int options = Poco::JSON_WRAP_STRINGS
);
示例:
Poco::JSON::Stringifier::stringify(json, oss, 4, -1, Poco::JSON_PRESERVE_KEY_ORDER);