[XML] Self Close Tag 해결

<회원> <아이디>hong1234</아이디> <성명>홍길동</성명> <비고 /> </회원>  내용이 비어 있는 엘리먼트(Self Close Tag)가 있다.<비고 />가 <비고></비고>로 표현되지 않고 있다. http://www.jdom.org/docs/apidocs/org/jdom2/output/Format.html#setExpandEmptyElements(boolean) 위 API를 참고하면 된다.   [출처]http://stackoverflow.com/questions/3497802/how-can-i-create-a-self-closing-tag-using-jdom

더 보기 →