这是我的 JSON 字符串:
{"attributes":[{"nm":"ACCOUNT","lv":[{"v":{"Id":null,"State":null},"vt":"java.util.Map","cn":1}],"vt":"java.util.Map","status":"SUCCESS","lmd":13585},{"nm":"PROFILE","lv":[{"v":{"Party":null,"Ads":null},"vt":"java.util.Map","cn":2}],"vt":"java.util.Map","status":"SUCCESS","lmd":41962}]}
我需要将上面的 JSON String
转换为 Pretty Print JSON 输出(使用 Jackson),如下所示:
{
"attributes": [
{
"nm": "ACCOUNT",
"lv": [
{
"v": {
"Id": null,
"State": null
},
"vt": "java.util.Map",
"cn": 1
}
],
"vt": "java.util.Map",
"status": "SUCCESS",
"lmd": 13585
},
{
"nm": "PROFILE
"lv": [
{
"v": {
"Party": null,
"Ads": null
},
"vt": "java.util.Map",
"cn": 2
}
],
"vt": "java.util.Map",
"status": "SUCCESS",
"lmd": 41962
}
]
}
谁能根据我上面的例子给我一个例子?如何实现这种情况?我知道有很多例子,但我无法正确理解这些例子。通过一个简单的例子,我们将不胜感激。
更新:
下面是我正在使用的代码:
ObjectMapper mapper = new ObjectMapper();
System.out.println(mapper.defaultPrettyPrintingWriter().writeValueAsString(jsonString));
但这不适用于我需要如上所述的输出的方式。
这是我用于上述 JSON 的 POJO:
public class UrlInfo implements Serializable {
private List<Attributes> attribute;
}
class Attributes {
private String nm;
private List<ValueList> lv;
private String vt;
private String status;
private String lmd;
}
class ValueList {
private String vt;
private String cn;
private List<String> v;
}
谁能告诉我我是否为 JSON 获得了正确的 POJO?
更新:
String result = restTemplate.getForObject(url.toString(), String.class);
ObjectMapper mapper = new ObjectMapper();
Object json = mapper.readValue(result, Object.class);
String indented = mapper.defaultPrettyPrintingWriter().writeValueAsString(json);
System.out.println(indented);//This print statement show correct way I need
model.addAttribute("response", (indented));
下面一行打印出如下内容:
System.out.println(indented);
{
"attributes" : [ {
"nm" : "ACCOUNT",
"error" : "null SYS00019CancellationException in CoreImpl fetchAttributes\n java.util.concurrent.CancellationException\n\tat java.util.concurrent.FutureTask$Sync.innerGet(FutureTask.java:231)\n\tat java.util.concurrent.FutureTask.",
"status" : "ERROR"
} ]
}
这是我需要展示的方式。但是当我将它添加到这样的模型中时:
model.addAttribute("response", (indented));
然后在 resultform jsp 页面中显示出来,如下所示:
<fieldset>
<legend>Response:</legend>
<strong>${response}</strong><br />
</fieldset>
我得到这样的东西:
{ "attributes" : [ { "nm" : "ACCOUNT", "error" : "null
SYS00019CancellationException in CoreImpl fetchAttributes\n
java.util.concurrent.CancellationException\n\tat
java.util.concurrent.FutureTask$Sync.innerGet(FutureTask.java:231)\n\tat
java.util.concurrent.FutureTask.", "status" : "ERROR" } ] }
我不需要。我需要上面打印出来的方式。谁能告诉我为什么会这样?
原文由 arsenal 发布,翻译遵循 CC BY-SA 4.0 许可协议
要缩进任何旧的 JSON,只需将其绑定为
Object
,例如:然后缩进写出来:
这避免了您必须定义实际的 POJO 来将数据映射到。
或者您也可以使用
JsonNode
(JSON 树)。