这是我拥有的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 Output(使用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));
然后在结果形式的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" } ] }
我不需要。我需要从上面打印出来的方式。有谁能告诉我为什么会这样发生?
答案 0 :(得分:197)
要缩进任何旧的JSON,只需将其绑定为Object
,如:
Object json = mapper.readValue(input, Object.class);
然后用缩进写出来:
String indented = mapper.writerWithDefaultPrettyPrinter().writeValueAsString(json);
这可以避免您必须定义实际的POJO来将数据映射到。
或者您也可以使用JsonNode
(JSON树)。
答案 1 :(得分:112)
最简单也是最紧凑的解决方案(适用于v2.3.3):
ObjectMapper mapper = new ObjectMapper();
mapper.enable(SerializationFeature.INDENT_OUTPUT);
答案 2 :(得分:22)
使用Jackson 1.9+的新方法如下:
Object json = OBJECT_MAPPER.readValue(diffResponseJson, Object.class);
String indented = OBJECT_MAPPER.writerWithDefaultPrettyPrinter()
.writeValueAsString(json);
输出格式正确!
答案 3 :(得分:13)
对于Jackson 1.9,我们可以使用以下代码进行漂亮的打印。
ObjectMapper objectMapper = new ObjectMapper();
objectMapper.enable(SerializationConfig.Feature.INDENT_OUTPUT);
答案 4 :(得分:8)
我认为,这是美化json数据最简单的技术,
String indented = (new JSONObject(Response)).toString(4);
其中 响应 是一个字符串。
只需在toString()
方法中传递4(indentSpaces)。
注意:在没有任何库的情况下,它在android中工作正常。但是在java中你必须使用org.json库。
答案 5 :(得分:4)
ObjectMapper.readTree()
可以一行完成:
mapper.writerWithDefaultPrettyPrinter().writeValueAsString(mapper.readTree(json));
答案 6 :(得分:3)
This looks like it might be the answer to your question。它说它使用的是Spring,但我认为在您的情况下这仍然可以帮助您。让我在这里内联代码,这样更方便:
import java.io.FileReader;
import org.codehaus.jackson.map.ObjectMapper;
import org.codehaus.jackson.map.ObjectWriter;
public class Foo
{
public static void main(String[] args) throws Exception
{
ObjectMapper mapper = new ObjectMapper();
MyClass myObject = mapper.readValue(new FileReader("input.json"), MyClass.class);
// this is Jackson 1.x API only:
ObjectWriter writer = mapper.defaultPrettyPrintingWriter();
// ***IMPORTANT!!!*** for Jackson 2.x use the line below instead of the one above:
// ObjectWriter writer = mapper.writer().withDefaultPrettyPrinter();
System.out.println(writer.writeValueAsString(myObject));
}
}
class MyClass
{
String one;
String[] two;
MyOtherClass three;
public String getOne() {return one;}
void setOne(String one) {this.one = one;}
public String[] getTwo() {return two;}
void setTwo(String[] two) {this.two = two;}
public MyOtherClass getThree() {return three;}
void setThree(MyOtherClass three) {this.three = three;}
}
class MyOtherClass
{
String four;
String[] five;
public String getFour() {return four;}
void setFour(String four) {this.four = four;}
public String[] getFive() {return five;}
void setFive(String[] five) {this.five = five;}
}
答案 7 :(得分:1)
您可以使用以下方式实现此目的:
1。使用Jacson
String formattedData=new ObjectMapper().writerWithDefaultPrettyPrinter()
.writeValueAsString(YOUR_JSON_OBJECT);
导入波纹管课程:
import com.fasterxml.jackson.databind.ObjectMapper;
gradle依赖项是:
compile 'com.fasterxml.jackson.core:jackson-core:2.7.3'
compile 'com.fasterxml.jackson.core:jackson-annotations:2.7.3'
compile 'com.fasterxml.jackson.core:jackson-databind:2.7.3'
2。使用Google Gson
String formattedData=new GsonBuilder().setPrettyPrinting()
.create().toJson(YOUR_OBJECT);
导入波纹管课程:
import com.google.gson.Gson;
最重要的是:
compile 'com.google.code.gson:gson:2.8.2'
在这里,您可以从存储库下载正确的更新版本。
希望这会对您有所帮助。
谢谢:)
答案 8 :(得分:1)
由于jackson-databind-2.10
JsonNode具有方法to easily format JSON
ObjectMapper
.readTree("{}")
.toPrettyString()
;
来自the docs
公共字符串toPrettyString()
toString()的替代品,它将 使用Jackson的默认漂亮打印机序列化此节点。
因为:2.10
答案 9 :(得分:0)
如果你格式化字符串并返回像 RestApiResponse<String>
这样的对象,你会得到不需要的字符,比如转义等:\n
、\"
。解决方案是将您的 JSON 字符串转换为 Jackson JsonNode 对象并返回 RestApiResponse<JsonNode>
:
ObjectMapper mapper = new ObjectMapper();
JsonNode tree = objectMapper.readTree(jsonString);
RestApiResponse<JsonNode> response = new RestApiResponse<>();
apiResponse.setData(tree);
return response;