Re: [xsl] xsl:include

Subject: Re: [xsl] xsl:include
From: David Carlisle <davidc@xxxxxxxxx>
Date: Tue, 19 Jun 2012 22:09:42 +0100
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);

Current Thread