1、pom.xml
<dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>2.4</version> </dependency>
2、使用方法
/** * 格式化json * @param uglyJSONString * @return */ public static String jsonFormatter(Object uglyJSON){ if(uglyJSON == null ){ return ""; } Gson gson = new GsonBuilder().setPrettyPrinting().create(); JsonParser jp = new JsonParser(); String prettyJsonString = gson.toJson(uglyJSON); return prettyJsonString; }