1 22 23 package tests.org.enhydra.xml.xhtml; 24 25 import org.enhydra.xml.io.DOMFormatter; 26 import org.enhydra.xml.io.OutputOptions; 27 28 31 public class Test { 32 public static void main(String args[]) throws Exception { 33 test1XHTML test01 = new test1XHTML(); 34 35 OutputOptions oos = new OutputOptions(); 36 oos.setOmitEncoding(true); 37 oos.setEncoding("ASCII"); 38 DOMFormatter domf = new DOMFormatter(oos); 39 40 domf.write(test01, System.out); 41 } 42 } 43 | Popular Tags |