C++ POCO - 如何美化 JSON?

C++ POCO - How to beautify a JSON?

本文关键字:JSON 何美化 POCO C++      更新时间:2023-10-16

我使用POCO库生成一个JSON文件,如下所示:

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"
}

正如@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);