以json格式打印实体类信息

时间:2022-04-16 15:40:06

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;
}