336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
작성된 XML Document 객체를 다양한 형태로 출력할 수 있다.
…
Document doc new Document();
…
// Document 객체 작성
…
XMLOutputter xo = new XMLOutputter();
// 1) Document 객체를 표준출력으로 보낸다.
xo.output(doc, System.out);
// 2) Document 객체를 파일로 보낸다.
xo.output(doc, new FileOutputStream(“XML파일”));
xo.output(doc, new FileWriter(“XML파일”));
// 3) Document 객체를 소켓 OutputStream 으로 보낸다.
os = new DataOutputStream(소켓.getOutputStream());
xo.output(doc, os);
// 4) Document 객체를 String 으로 보낸다.
XMLOutputtr xo = new XMLOutputter();
String str = xo.output(Document doc);
'프로그램 > Java' 카테고리의 다른 글
[Java] properties 파일을 읽어 들이고 저장하기 (0) | 2013.11.15 |
---|---|
[Java] JDom – SAXBuilder를 이용한 Document 객체 생성 (0) | 2013.11.15 |
[Java] byte[] -> hex, hex -> byte[] (0) | 2013.11.15 |
[Java] – JDom XML 문서의 주석(Comment)을 다는 방법 (0) | 2013.11.15 |
[Java] UUID 생성하기 (0) | 2013.11.15 |