/** * Convenience class to transform a node. * * @param xsl path name to the xsl file. * @param xml dom source document. * @param out output stream destination. */ public void transform(String xsl, Node xml, OutputStream out) throws Exception { TransformerImpl transformer; transformer = (TransformerImpl) newTemplates(xsl).newTransformer(); transformer.transform(xml, out); }
/** * Convenience class to transform a node. * * @param xsl DOM containing the parsed xsl. * @param xml DOM document node. * @param out output stream destination. */ public void transform(Document xsl, Node xml, OutputStream out) throws Exception { TransformerImpl transformer = (TransformerImpl) newTransformer(xsl); transformer.transform(xml, out); }