我在 Map 对象中有数据,我想以 json 格式打印它。我尝试使用 DefaultPrettyPrinter
mapper.writerWithDefaultPrettyPrinter().writeValue(filePath, mapObject);
但格式不是我所期望的。我得到这样的输出:
{
"arrVals" : ["value-1","value-2"]
}
我想要这样的输出:
{
"arrVals" : [
"value-1",
"value-2"
]
}