I want to write an xsl document to generate motre than 1 output in .html according to the xml xml : Lib
Solution 1:
I see two problems:
In your XSL file you should be using xsl:result-document
instead of xsl:document
.
When you invoke transform on the Transformer object the result should be an empty document: transformer.transform(source, new DOMResult());
Post a Comment for "Xsl Multiple Outputs Using Java"