본문 바로가기
SpringBoot

xml convert to object

by ByteBridge 2017. 8. 26.
반응형


xml 문자열을 객체로 변환 하는 방법

xml 을 element 형태에 맞게 object 클래스를 만든 후 아래와 같이 jaxb 를 사용하여 unmarshal 할수 있다.

JAXB.unmarshal(new StringReader(res), Object.class);






반응형