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