使用XSLT合并两个XML文件

时间:2015-04-23 14:40:31

标签: xml merge xslt-1.0

我为我的问题搜索了一个解决方案。我发现了一些类似的问题和答案,但没有一个适合我的问题。

我是一个XML新手,之前从未使用过XSLT。我有Linux,可以使用xsltproc或xmllint(或任何最好的)。

问题很简单。我必须使用相同布局的XML文件。开头是一个文件中包含的节点的计数器。我只需要添加两个文件的计数器,然后将两个文件中的所有节点作为单个列表。 (排序会更好。)

实施例: A.XML

<?xml version="1.0" standalone="yes"?>
<List xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://tempuri.org/List.xsd">
  <publshInformation>
    <Publish_Date>12/17/2014</Publish_Date>
    <Record_Count>115</Record_Count>
  </publshInformation>
  <Entry>
    <uid>9639</uid>
    <firstName>Bob</firstName>
....
  </Entry>
</List>

B.XML

<?xml version="1.0" standalone="yes"?>
<List xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://tempuri.org/List.xsd">
  <publshInformation>
    <Publish_Date>12/17/2014</Publish_Date>
    <Record_Count>100</Record_Count>
  </publshInformation>
  <Entry>
    <uid>4711</uid>
    <firstName>John</firstName>
....
  </Entry>
</List>

结果: out.xml

<?xml version="1.0" standalone="yes"?>
<List xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://tempuri.org/List.xsd">
  <publshInformation>
    <Publish_Date>12/17/2014</Publish_Date>
    <Record_Count>215</Record_Count>
  </publshInformation>
  <Entry>
    <uid>4711</uid>
    <firstName>John</firstName>
....
  </Entry>
  <Entry>
    <uid>9639</uid>
    <firstName>Bob</firstName>
....
  </Entry>
</List>

我该如何管理?我不在这里发布我的XSLT,因为它们不起作用,这是因为我的技能有限。谢谢你的任何建议!

1 个答案:

答案 0 :(得分:0)

以这种方式试试。这里的想法是您将XSL转换应用于文档a.xml,并将路径作为参数传递给b.xml文件。

您可能希望更改节点以进行更合理的排序。

请注意使用前缀来处理XML源中的节点,因为它们都在命名空间中。

XSLT 1.0

<xsl:stylesheet version="1.0" 
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:ns1="http://tempuri.org/List.xsd">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:strip-space elements="*"/>

<xsl:param name="doc2" select="'b.xml'" />

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

<xsl:template match="ns1:Record_Count">
    <xsl:copy>
        <xsl:value-of select=". + document($doc2)/ns1:List/ns1:publshInformation/ns1:Record_Count" />
    </xsl:copy>
</xsl:template>

<xsl:template match="ns1:List">
    <xsl:copy>
        <xsl:apply-templates select="*|document($doc2)/ns1:List/ns1:Entry">
            <xsl:sort select="ns1:firstName" data-type="text" order="ascending"/>
        </xsl:apply-templates>
    </xsl:copy>
</xsl:template>

</xsl:stylesheet>