C ++ POCO - 如何美化JSON?

问题描述 投票:2回答:1

我使用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"
}
c++ json poco-libraries
1个回答
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);
© www.soinside.com 2019 - 2024. All rights reserved.