out = new FileOutputStream(file); XMLOutputter serializer = new XMLOutputter(); // jdom output format Format f = Format.getPrettyFormat(); // output 출력 포맷 - pretty format : whitespace beautification with 2-space indents, uses the UTF-8 encoding 등 serializer.setFormat(f); serializer.output(xmlDoc, out); out.flush(); |
http://www.jdom.org/docs/apidocs/index.html
'프로그래밍 > ETC' 카테고리의 다른 글
[XML] The processing instruction target matching "[xX][mM][lL]" is not allowed (0) | 2010.10.14 |
---|---|
[jdom] jdom을 이용한 XML 문서 생성하기 (0) | 2010.09.03 |
[json] org.json.* 사용하기 (0) | 2010.04.20 |
[XPath] StringReader를 이용한 InputSource 를 소스로 해서, XPath.evaluate() 시 에러 (0) | 2009.03.03 |
[XPath] String으로 InputSource 생성하기 (0) | 2009.03.02 |