使用XSL在XML文件中添加节点

时间:2013-12-24 10:51:30

标签: xml xslt nodes

如何使用XSL在输出XML文件中合并两个XML文件? 例如,我们有

文件1:

<tests>
     <test name="testOne"/>
     <test name="testTwo"/>
     <test name="testThree"/>
     <test name="testFour"/>
</tests>

文件2:

<tests>
     <test name="testOne"/>
     <test name="testTwo"/>
     <test name="testThree"/>
     <test name="testFour"/>
     <test name="testFive"/>
</tests>

输出文件必须是:

<tests>
 <test name="testOne"/>
 <test name="testTwo"/>
 <test name="testThree"/>
 <test name="testFour"/>
 <test name="testFive"/>
</tests>

示例2具有相同的XSL: 文件1:

<tests>
     <test name="testOne"/>
     <test name="testTwo"/>
     <test name="testThree"/>
     <test name="testFour"/>
</tests>

档案2(之二):

<tests>
     <test name="testFive"/>
</tests>

输出文件:

<tests>
 <test name="testOne"/>
 <test name="testTwo"/>
 <test name="testThree"/>
 <test name="test4"/>
 <test name="testFive"/>
</tests>

对于输出文件,我想要两个xml文件中包含的所有信息。我是XSL的新手,这是一个帮助我的例子。感谢

0 个答案:

没有答案