Jackson 2 를 사용하여 json 을 이쁘게 출력하기 (beautifier, formatter)

By | 11월 24, 2016

(1) 심플한 방법

ObjectMapper mapper = new ObjectMapper();
String beautifiedJson = mapper.writerWithDefaultPrettyPrinter().writeValueAsString(mapper.readValue(srcJson, LilnkedHashMap.class));

 

(2) (1) 을 수행했는데 마음에 들지 않을 경우, 사용자정의를 할 수 있는 포인트가 있다.

(내 경우에는 indent가 tab이 아니라 space 2개로 되어 있는 것이 마음에 들지 않아서 적용해 보았다.)

 

 

 

Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments