这是一个跟进问题。我复制了下面的原始问题。
我做了上述更改,但似乎xsltproc找不到b.xml,尽管a.xml和b.xml在同一个文件夹中。我从同一个文件夹中调用xsltproc。也许我的电话不正确。我用了
xsltproc -v --debug -o output.xml merge3.xsl a.xml
其中merge3.xsl是您的(改编)示例。我知道--debug和-v不是必需的,但我想看看xsltproc在做什么。
不幸的是,output.xml是a.xml的精确副本。
XSLT中的“ns1”是什么意思?我想知道我的路径是否设置正确。我想ns1是我调用的参数。但是哪一个?
即使我使用所有文件的完整路径,我也只能获得a.xml的副本。错误在哪里?
这是merge3.xsl:
<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:uid" data-type="text" order="ascending"/>
</xsl:apply-templates>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
这是最初的问题:
我为我的问题搜索了一个解决方案。我发现了一些类似的问题和答案,但没有一个适合我的问题。
我是一个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,因为它们不起作用,这是因为我的技能有限。谢谢你的任何建议!