如何使用XSLT将2个XML文件与公共节点合并?

时间:2013-02-05 02:53:15

标签: xml xslt xpath

file1.xml:

<config>
  <version>
     <input00 version ="1"/>
  </version>
</config>

file2.xml:

 <config>
  <version>
     <input01 version ="2"/>
  </version>
</config>

的Output.xml:

<config>
  <version>
     <input00 version ="1"/>
     <input01 version ="2"/>
  </version>
</config>

这是我尝试生成样式表的原因: merge.xslt

<?xml version="1.0" encoding="UTF-8"?>

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:template match="@*|node()">
    <xsl:copy>
        <xsl:apply-templates select="@*|node()" />
    </xsl:copy>
</xsl:template>


<xsl:template match="/config">
     <xsl:copy>
        <xsl:apply-templates select="config"/>
        <xsl:apply-templates select="document('./file1.xml')/config/version" />
     </xsl:copy>
</xsl:template>


</xsl:stylesheet>

&安培;这就是我运行xslt处理器的方式:

 $xsltproc merge.xslt file2.xml

这就是我得到的:

<?xml version="1.0"?>
<config/>

请帮忙。

1 个答案:

答案 0 :(得分:3)

试试这个XSLT:

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <xsl:output indent="yes"/>

  <xsl:template match="@*|node()">
    <xsl:copy>
      <xsl:apply-templates select="@*|node()" />
    </xsl:copy>
  </xsl:template>

  <xsl:template match="version">
    <xsl:copy>
      <xsl:apply-templates select="*"/>
      <xsl:apply-templates select="document('file1.xml')/config/version/*" />
    </xsl:copy>
  </xsl:template>

</xsl:stylesheet>