jackson 라이브러리쪽에보면 있다. ObjectMapper 의 readValue 메서드를 통해서 할 수 있다.
map -> json 은
Map map = new HashMap();
map.put("1","a");
map.put("2","a");
map.put("3","a");
String json = null;
ObjectMapper objectMapper = new ObjectMapper();
objectMapper.registerModule(new AfterburnerModule());
try {
json = objectMapper.writeValueAsString(map);
} catch (JsonProcessingException e) {
e.printStackTrace();
}
간단한 예제인다. 참고바란다.
'IT > java' 카테고리의 다른 글
숫자 판단 isdigit 는 아니지만... 문자 판단 (0) | 2016.09.08 |
---|---|
map 의 .merge ( java 8 lambda) 값 증가 를 간단히 (0) | 2016.09.06 |
statements vs expressions (구문 vs 표현식) in lambda (0) | 2015.11.09 |
java 8 tutorial 한글 (2) | 2014.04.09 |
잘못쓰면 큰일나는 loop 과 객체선언 ... 그리고 성능저하 (0) | 2013.09.26 |