168169170171172173174175176177178179
*/ public static void writeHtml( InputStream is, OutputStream os ) { try { XmlToHtml x = new XmlToHtml(); x.parse( is, os ); } catch ( DocumentException e ) { throw new RuntimeException( "DocumentException : " + e.getMessage(), e ); }