如何使用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的新手,这是一个帮助我的例子。感谢