我有两个xml文件person1和person2,我想使用xslt将它们合并到一个xml文件中,因为我是xslt的新手,所以将不胜感激: 第一档人员1:
<personnes>
<personne>
<name>aaa</name>
<age>10</age>
<adress>aaaaaa</adress>
</personne>
<personne>
<name>bbb</name>
<age>10</age>
<adress>aaaaaa</adress>
</personne>
<personne>
<name>ccc</name>
<age>20</age>
<adress>cccccc</adress>
</personne>
<personne>
<name>ddd</name>
<age>10</age>
<adress>cccccc</adress>
</personne>
</personnes>
第二个人2:
<personnes>
<personne>
<id>1111</id>
<quantity>1100</quantity>
</personne>
<personne>
<id>2222</id>
<quantity>2200</quantity>
</personne>
<personne>
<id>3333</id>
<quantity>3300</quantity>
</personne>
<personne>
<id>4444</id>
<quantity>4400</quantity>
</personne>
<personne>
<id>5555</id>
<quantity>5500</quantity>
</personne>
</personnes>
,我希望将结果保存在像下面这样的新xml文件中:
<personnes>
<personne>
<id>1111</id>
<name>aaa</name>
<quantity>1100</quantity>
<age>10</age>
<adress>aaaaaa</adress>
</personne>
<personne>
<id>2222</id>
<name>bbb</name>
<quantity>2200</quantity>
<age>10</age>
<adress>aaaaaa</adress>
</personne>
<personne>
<id>3333</id>
<name>ccc</name>
<quantity>3300</quantity>
<age>20</age>
<adress>cccccc</adress>
</personne>
<personne>
<id>4444</id>
<name>ddd</name>
<quantity>4400</quantity>
<age>10</age>
<adress>cccccc</adress>
</personne>
</personnes>
我想从文件person2中获取ID和数量,并将它们放入xml文件persons1中,所以一个接一个地表示fisrt,第二个以此类推...
答案 0 :(得分:0)
这里是一个XSL文件,该文件应该可以完成您在合并中所需的内容:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
<xsl:output method="xml" indent="yes"/>
<!-- load the merge file -->
<xsl:variable name="personne2"
select="document('file2.xml')"/>
<xsl:template match="/">
<personnes>
<xsl:for-each select="personnes/personne">
<xsl:variable name="elementposition" select="count(preceding-sibling::*)+1"/>
<!-- copy the child nodes -->
<personne>
<xsl:copy-of select="$personne2/personnes//personne[position() = $elementposition]/id"/>
<xsl:copy-of select="child::name"/>
<xsl:copy-of select="$personne2/personnes//personne[position() = $elementposition]/quantity"/>
<xsl:copy-of select="child::age"/>
<xsl:copy-of select="child::address"/>
</personne>
</xsl:for-each>
</personnes>
答案 1 :(得分:0)
<xsl:variable name="doc" select="document('person2.xml')"/>
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
<xsl:template match="personnes">
<xsl:copy>
<xsl:for-each select="personne">
<xsl:variable name="pos" select="position()"/>
<xsl:copy>
<xsl:if test=".[$pos=$doc/personnes/personne/position()]">
<xsl:copy-of select="$doc/personnes/personne[position() =$pos]/id"/>
</xsl:if>
<xsl:if test="child::name">
<name>
<xsl:value-of select="name"/>
</name>
</xsl:if>
<xsl:if test=".[$pos=$doc/personnes/personne/position()]">
<xsl:copy-of select="$doc/personnes/personne[position() =$pos]/quantity"/>
</xsl:if>
<xsl:if test="child::age">
<age>
<xsl:value-of select="age"/>
</age>
</xsl:if>
<xsl:if test="child::adress">
<adress>
<xsl:value-of select="adress"/>
</adress>
</xsl:if>
</xsl:copy>
</xsl:for-each>
</xsl:copy>
</xsl:template>
You may also try this