使用Jackson将JSON字符串转换为Pretty Print JSON输出


165

这是我拥有的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));

然后在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" } ] }

我不需要 我需要上面打印出来的方式。谁能告诉我为什么会这样发生?

Answers:


252

要缩进任何旧的JSON,只需将其绑定为Object,例如:

Object json = mapper.readValue(input, Object.class);

然后以缩进形式将其写出:

String indented = mapper.writerWithDefaultPrettyPrinter().writeValueAsString(json);

这避免了您必须定义实际的POJO来映射数据。

或者,您也可以使用JsonNode(JSON树)。


感谢StaxMan,我想这是可行的。当我打印出缩进时,我会得到所需的方式。但是,当我使用缩进添加到模型中时,可以在resultform页面中显示它们。它仍然以两三行打印。我已经更新了问题,也许您会更加了解现在的情况。
阿森纳

然后问题出在Spring上-我想它期望POJO作为属性,而不是预格式化的String。因此,与其尝试自己格式化,还不如告诉Spring做到这一点。使用Jackson时,应该可以将其配置为使用缩进。虽然说实话,但我不确定为什么您甚至需要缩进来进行响应。
StaxMan 2013年

30
嗨,defaultPrettyPrintingWriter()已被弃用。从1.9开始,请改用writerWithDefaultPrettyPrinter()。请参阅:jackson.codehaus.org/1.9.0/javadoc/org/codehaus/jackson/map/…–
Browny Lin

6
对于Jackson 2,请使用以下Marcelo C.指定的SerializationFeature.INDENT_OUTPUT
Mike R

任何想法如何使用杰克逊发布书面价值的金额?
Reyansh Mishra

124

最简单也是最紧凑的解决方案(适用于v2.3.3):

ObjectMapper mapper = new ObjectMapper();
mapper.enable(SerializationFeature.INDENT_OUTPUT);
mapper.writeValueAsString(obj)

21
您实际上可以进一步缩短:ObjectMapper mapper = new ObjectMapper.enable(SerializationFeature.INDENT_OUTPUT);
杰森·尼科尔斯

26

使用Jackson 1.9+的新方法如下:

Object json = OBJECT_MAPPER.readValue(diffResponseJson, Object.class);
String indented = OBJECT_MAPPER.writerWithDefaultPrettyPrinter()
                               .writeValueAsString(json);

输出将正确格式化!


1
不幸的是,如果我的输入是运行时创建的对象,而不是另一个json,那将无济于事。
Innokenty

@Innokenty然后跳过第一行。
muttonUp

2
@muttonUp是的,显然。我什至做到了,我不知道为什么留下这么愚蠢的评论=)
Innokenty 2015年

17

对于Jackson 1.9,我们可以使用以下代码进行漂亮的打印。

ObjectMapper objectMapper = new ObjectMapper();
objectMapper.enable(SerializationConfig.Feature.INDENT_OUTPUT);

11

我认为,这是美化json数据的最简单方法,

String indented = (new JSONObject(Response)).toString(4);

其中Response是一个字符串。

只需在toString()方法中传递4(indentSpaces)。

注意:它在没有任何库的android中可以正常工作。但是在Java中,您必须使用org.json库。


3
值得注意的是这是在Java(org.json)库中使用JSON
史蒂夫·钱伯斯

在android中,它可以不使用任何libraray而使用direclty。
阿曼古普塔

String json = new GsonBuilder().setPrettyPrinting().create().toJson(map); String indentedJson = (new JSONObject(json)).toString(4);由于某种原因,第二个密码丢失了密码的顺序
Michail Michailidis

不幸的是,当前方法无法处理json对象列表。我的意思是[{“ id”:“ 1”},{“ id”:“ 2”}]
Geniy

4

看来这可能是您问题的答案。它说它正在使用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;}
}

感谢Daniel的帮助。我最难的部分是如何将JSON建模为类?如果我能使该部分正常工作,则可以轻松编写其余部分的代码。
阿森纳

您能看一下我从JSON编写的POJO类吗?看起来正确与否?
阿森纳

3

您可以使用以下方式实现此目的:

1.使用Apache的Jackson

    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'

在这里,您可以从存储库下载正确的更新版本。


2

ObjectMapper.readTree() 可以在一行中做到这一点:

mapper.writerWithDefaultPrettyPrinter().writeValueAsString(mapper.readTree(json));

1
我喜欢这个答案的原因是,除了直接映射到JSON类型之外,它根本不执行任何对象转换。只要输入字符串是有效的JSON,我们就知道输出字符串在语义上将是等效的JSON。
M.贾斯汀
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.