XSLT打开其他xml文件



我将合并其相对路径在我的输入XML文件中指定的XML文件(并添加元信息)。我要合并的文件位于名为"files"的子目录中输入文件的结构如下

<files>
   <file>
       <path>files/firstfile.xml</path>
   </file>
   <file>
       <path>files/secondfile.xml</path>
   </file>
</files>

firstfile.xml和secondfile.xml具有以下结构

    <tables>
        <table name = "...">
        ...
        </table>
        ...
    <tables>

我想把一个文件的所有表节点放在一个组中,并向其中添加元信息

   <xsl:template match="/">
    <tables>
          <xsl:apply-templates/>
    </tables>
</xsl:template>

<xsl:template name = "enrichWithMetaInformation" match = "file">
            <xsl:apply-templates select="document(./path)/tables">
                <xsl:with-param name="file" select="."/>
            </xsl:apply-templates>

</xsl:template>
<xsl:template match="tables">
    <group>
        <meta>
            ...Some meta data ...
        </meta>
        <xsl:copy-of select="./table"/>
    </group>
</xsl:template>

对于每个文件,我都会得到一个错误:

系统找不到指定的文件。

它表示已返回一个空节点集(因此无法加载文件)。有人知道如何解决这个问题吗?

干杯

检查源文档的基本URI是否已知,例如执行基本URI(/)。在参数作为节点(或节点集)提供的情况下,此值用于解析传递给document()的相对URI。

基本URI未知的两种常见情况是:

(a) 如果您将源文档作为内存中的DOM 提供

(b) 如果您将源文档作为没有已知URI的输入流或Reader提供。

document()函数的参数应该是字符串。使用获取变量中路径的节点值。/然后把它传给我。我可以在电脑前做一个快速测试,但我认为这是你的问题。这里有一个选项:

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
<xsl:template match="/">
    <tables>
        <xsl:apply-templates/>
    </tables>
</xsl:template>
<xsl:template match = "file">
    <xsl:variable name="filepath" select="concat('./',path)"/>
    <xsl:call-template name="tableprocessor">
        <xsl:with-param name="tables" select="document($filepath)/tables"/>
    </xsl:call-template>   
</xsl:template>
<xsl:template name="tableprocessor">
    <xsl:param name="tables"/>
    <group>
        <xsl:copy-of select="$tables"/>
    </group>
</xsl:template>
</xsl:stylesheet>

相关内容

  • 没有找到相关文章

最新更新