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