xsl-list
[Top] [All Lists]

Re: [xsl] xsl:include

2012-06-19 16:09:57
Ming Yu forwarded my reply but the java setup I was referring to was:

Here is the method I used to load the main xslt and do the transformation:

String xslt = "src/main/resources/xslt/main.xslt";
....
InputStream is_xml =".....";
InputStream is_xslt = new FileInputStream(xsltPath);

Source xsltSource = new StreamSource(is_xslt);
Source xmlSource = new StreamSource(is_xml);

TransformerFactory transFact = TransformerFactory.newInstance();
Result result = new StreamResult(baos);
Transformer trans = transFact.newTransformer(xsltSource);
 trans.transform(xmlSource, result);

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--

<Prev in Thread] Current Thread [Next in Thread>