JSON Beautifier Library for Java

后端 未结 4 1164
栀梦
栀梦 2021-02-19 22:02

I want to format a string containing JSON data using Java. Does anybody know an open source library for that.

4条回答
  •  旧巷少年郎
    2021-02-19 22:50

    Update to previous answer by skaffman, with newer versions of Jackson (2+, I think). The second line of code is now:

    objectMapper.configure(SerializationFeature.INDENT_OUTPUT, true);
    

提交回复
热议问题