1 9 10 package org.dom4j.samples; 11 12 import org.dom4j.io.HTMLWriter; 13 import org.dom4j.io.XMLWriter; 14 15 22 public class HTMLWriterDemo extends SAXDemo { 23 24 public static void main(String [] args) { 25 run(new HTMLWriterDemo(), args); 26 } 27 28 public HTMLWriterDemo() { 29 } 30 31 35 protected XMLWriter createXMLWriter() throws Exception { 36 return new HTMLWriter(System.out); 37 } 38 39 } 40 41 79 | Popular Tags |