0

我正在尝试访问 XSL 文档中的内部 XML 数据。尝试这样做时,Apache Xalan 在使用 document('') 时抛出 java.lang.NullPointerException。

这是 XSL 源代码:

<xsl:stylesheet version="1.0"
 xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
 xmlns:fo="http://www.w3.org/1999/XSL/Format"
 xmlns:ext="http://exslt.org/common"
 xmlns:my="http://example.com/2006/some-data">
    <xsl:output omit-xml-declaration="yes"/>
    <xsl:strip-space elements="*"/>

    <my:params xml:space="preserve">
        <pattern>
            <old>&lt;p&gt;</old>
            <new>P</new>
        </pattern>
        <pattern>
            <old>&lt;/p&gt;</old>
            <new>/P</new>
        </pattern>
        <pattern>
            <old>&lt;strong&gt;</old>
            <new>STRONG</new>
        </pattern>
        <pattern>
            <old>&lt;/strong&gt;</old>
            <new>/STRONG</new>
        </pattern>
    </my:params>

    <xsl:variable name="vrtfPats">
     <xsl:for-each select="document('')/xsl:stylesheet/my:params/*">
       <xsl:copy-of select="."/>
     </xsl:for-each>
    </xsl:variable>


</xsl:stylesheet>

有没有其他方法可以使用 Xalan 从 XSL 文件中访问内部数据?

4

1 回答 1

0

尽量不要声明一个变量来存储节点并在样式表中使用它们......如:

<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:fo="http://www.w3.org/1999/XSL/Format"
xmlns:ext="http://exslt.org/common"
xmlns:my="http://example.com/2006/some-data">
<xsl:output omit-xml-declaration="yes"/>
<xsl:strip-space elements="*"/>

<my:params xml:space="preserve">
    <pattern>
        <old>&lt;p&gt;</old>
        <new>P</new>
    </pattern>
    <pattern>
        <old>&lt;/p&gt;</old>
        <new>/P</new>
    </pattern>
    <pattern>
        <old>&lt;strong&gt;</old>
        <new>STRONG</new>
    </pattern>
    <pattern>
        <old>&lt;/strong&gt;</old>
        <new>/STRONG</new>
    </pattern>
</my:params>

<xsl:template match="/">
    <test>
    <xsl:for-each select="document('')//my:params">
        <xsl:apply-templates/>
    </xsl:for-each>
    </test>
</xsl:template>
<xsl:template match="pattern">
    <pattern-match>
        <xsl:apply-templates/>
    </pattern-match>
</xsl:template>
<xsl:template match="old">
    <old-match>
        <xsl:apply-templates/>
    </old-match>
</xsl:template>
<xsl:template match="new">
    <new-match>
        <xsl:apply-templates/>
    </new-match>
</xsl:template>

</xsl:stylesheet>

产生这个答案:

    <test xmlns:my="http://example.com/2006/some-data" xmlns:ext="http://exslt.org/common"
        xmlns:fo="http://www.w3.org/1999/XSL/Format">
        <pattern-match>
            <old-match>&lt;p&gt;</old-match>
            <new-match>P</new-match>
        </pattern-match>
        <pattern-match>
            <old-match>&lt;/p&gt;</old-match>
            <new-match>/P</new-match>
        </pattern-match>
        <pattern-match>
            <old-match>&lt;strong&gt;</old-match>
            <new-match>STRONG</new-match>
        </pattern-match>
        <pattern-match>
            <old-match>&lt;/strong&gt;</old-match>
            <new-match>/STRONG</new-match>
        </pattern-match>
    </test>
于 2013-10-24T04:41:56.107 回答