如何在JSP中使用多个XSL转换XML文件。下面的snipet使用单个Xsl表示Transformation。
<x:transform xml = "${inputDoc}" xslt = "${stylesheet}">
答案 0 :(得分:1)
将中间结果存储到变量中并将变量提供给下一个变换:
<x:transform xml="${inputDoc}" xslt="${stylesheet1}" var="temp"/>
<x:transform xml="${temp}" xslt="${stylesheet2}"/>