I have to transform xml file according to xls file and I use javax.xml.transform.*
but this approach has limitations. I can't use xsl with a size larger than more 64kB. GregorSamsa.
Is there any a library in java to transform according to xsl > 64kB?
Asked
Active
Viewed 114 times
0

seba21007
- 61
- 1
- 5
-
Take a look here: https://stackoverflow.com/questions/33399697/xslt-to-process-huge-xml-files-almost-5-gb – spekdrum Mar 16 '18 at 13:52
-
I'm curious, why it is not possible to modularize your stylesheet and break it up into smaller files and/or templates instead of just one bit stylesheet? – jschnasse Mar 26 '18 at 09:33
-
Stylesheet is delivered from the outside. External dependence. – seba21007 Mar 27 '18 at 09:48