C ++ POCO-如何美化JSON?

时间:2018-09-07 08:40:38

标签: c++ json poco-libraries

我使用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"
}

1 个答案:

答案 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);