我正在尝试将多个XML文件(数百个)合并到一个xml文件中,但是使用标记<accountno>
对它们进行排序和分组(还添加了一个额外的容器和源文件名标记)。我曾尝试用C#做这个,但经过研究似乎XSLT可能是最简单的方法吗?问题是我在XSLT中没有足够的经验来实现这一目标。
我将尝试演示三个简化的XML文件:
file1.xml
<?xml version="1.0" encoding="UTF-8" ?>
<OrigResponse>
<address>
<name1>Title1001257027</name1>
<add1>address 1</add1>
</address>
<trans>
<header>
<h1text>mixed text</h1text>
</header>
<body>
<accountno>123456789</accountno>
</body>
</trans>
</OrigResponse>
File2.xml
<?xml version="1.0" encoding="UTF-8" ?>
<OrigResponse>
<address>
<name1>Title1001257028</name1>
<add1>address 1</add1>
</address>
<trans>
<header>
<h1text>mixed text</h1text>
</header>
<body>
<accountno>000456700</accountno>
</body>
</trans>
</OrigResponse>
File3.xml
<?xml version="1.0" encoding="UTF-8" ?>
<OrigResponse>
<address>
<name1>Title1001257027</name1>
<add1>address 1</add1>
</address>
<trans>
<header>
<h1text>mixed text</h1text>
</header>
<body>
<accountno>123456789</accountno>
</body>
</trans>
</OrigResponse>
因为File1和file3.xml用于相同的帐号,所以这些帐号需要合并到一个唯一的容器中,而文件2则在它自己的容器中。所以对于输出xml文件,我正在考虑创建这样的东西:
merged.xml
<?xml version="1.0" encoding="UTF-8" ?>
<OrigResponse>
<mergeinvoice>
<inputfile id="{cntr}">file3.xml</inputfile>
<address>
<name1>Title100125777</name1>
<add1>address 1</add1>
</address>
<trans>
<header>
<h1text>mixed text</h1text>
</header>
<body>
<accountno>000456700</accountno>
</body>
</trans>
<inputfile id="{cntr}">file1.xml</inputfile>
<address>
<name1>Title1001257027</name1>
<add1>address 1</add1>
</address>
<trans>
<header>
<h1text>mixed text</h1text>
</header>
<body>
<accountno>123456789</accountno>
</body>
</trans>
</mergeinvoice>
<mergeinvoice>
<inputfile id="{cntr}">file2.xml</inputfile>
<address>
<name1>Title1001257027</name1>
<add1>address 1</add1>
</address>
<trans>
<header>
<h1text>mixed text</h1text>
</header>
<body>
<accountno>123456789</accountno>
</body>
</trans>
</OrigResponse>
因此,我们在容器<mergeinvoice>.
我还需要在父级别插入<inputfilename>
标记,其中包含每个帐户的源xml文件的名称,最后,同一标记中的'id'属性包含每个文件的递增计数器(我用变量占位符{cntr}
)显示了它。
这是否可以像建议的那样轻松实现XSLT?我意识到这是一个很大的问题,但如果是这样,我希望专家可以给我一个正确方向的引导?
非常感谢期待
安迪
答案 0 :(得分:1)
假设Saxon 9和XSLT 2.0,期望使用初始模板main
(it:main
命令行选项)调用以下样式表,并读入目录和组中的所有*.xml
文档它们:
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
exclude-result-prefixes="xs">
<xsl:strip-space elements="*"/>
<xsl:output indent="yes"/>
<xsl:template name="main">
<OrigResponse>
<xsl:for-each-group select="collection('.?*.xml')/OrigResponse" group-by="trans/body/accountno">
<mergeinvoice>
<xsl:variable name="group-pos" as="xs:integer" select="position()"/>
<xsl:apply-templates select="current-group()">
<xsl:with-param name="group-pos" select="$group-pos"/>
</xsl:apply-templates>
</mergeinvoice>
</xsl:for-each-group>
</OrigResponse>
</xsl:template>
<xsl:template match="OrigResponse">
<xsl:param name="group-pos" as="xs:integer"/>
<inputfile id="f{$group-pos}-{position()}">
<xsl:value-of select="tokenize(document-uri(/), '/')[last()]"/>
</inputfile>
<xsl:copy-of select="node()"/>
</xsl:template>
</xsl:stylesheet>
三个示例文件的输出是
<OrigResponse>
<mergeinvoice>
<inputfile id="f1-1">file1.xml</inputfile>
<address>
<name1>Title1001257027</name1>
<add1>address 1</add1>
</address>
<trans>
<header>
<h1text>mixed text</h1text>
</header>
<body>
<accountno>123456789</accountno>
</body>
</trans>
<inputfile id="f1-2">file3.xml</inputfile>
<address>
<name1>Title1001257027</name1>
<add1>address 1</add1>
</address>
<trans>
<header>
<h1text>mixed text</h1text>
</header>
<body>
<accountno>123456789</accountno>
</body>
</trans>
</mergeinvoice>
<mergeinvoice>
<inputfile id="f2-1">file2.xml</inputfile>
<address>
<name1>Title1001257028</name1>
<add1>address 1</add1>
</address>
<trans>
<header>
<h1text>mixed text</h1text>
</header>
<body>
<accountno>000456700</accountno>
</body>
</trans>
</mergeinvoice>
</OrigResponse>
因此,我不是1
,2
等形式的ID的顺序计数器,而是在名称id
中选择了f[group-count]-[count-in-group]
值。要实现顺序计数器,可能需要先将变量分组为一个临时树,然后使用xsl:number
将模板推送到模板中,以计算inputfile
元素,如下例所示:
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
exclude-result-prefixes="xs">
<xsl:strip-space elements="*"/>
<xsl:output indent="yes"/>
<xsl:template name="main">
<OrigResponse>
<xsl:variable name="temp-doc">
<xsl:for-each-group select="collection('.?*.xml')/OrigResponse" group-by="trans/body/accountno">
<mergeinvoice>
<xsl:apply-templates select="current-group()" mode="group"/>
</mergeinvoice>
</xsl:for-each-group>
</xsl:variable>
<xsl:apply-templates select="$temp-doc/node()"/>
</OrigResponse>
</xsl:template>
<xsl:template match="OrigResponse" mode="group">
<inputfile>
<xsl:value-of select="tokenize(document-uri(/), '/')[last()]"/>
</inputfile>
<xsl:copy-of select="node()"/>
</xsl:template>
<xsl:template match="@* | node()" mode="#all">
<xsl:copy>
<xsl:apply-templates select="@* , node()" mode="#current"/>
</xsl:copy>
</xsl:template>
<xsl:template match="inputfile">
<xsl:copy>
<xsl:attribute name="id">
<xsl:number level="any"/>
</xsl:attribute>
<xsl:apply-templates/>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
然后输出
<OrigResponse>
<mergeinvoice>
<inputfile id="1">file1.xml</inputfile>
<address>
<name1>Title1001257027</name1>
<add1>address 1</add1>
</address>
<trans>
<header>
<h1text>mixed text</h1text>
</header>
<body>
<accountno>123456789</accountno>
</body>
</trans>
<inputfile id="2">file3.xml</inputfile>
<address>
<name1>Title1001257027</name1>
<add1>address 1</add1>
</address>
<trans>
<header>
<h1text>mixed text</h1text>
</header>
<body>
<accountno>123456789</accountno>
</body>
</trans>
</mergeinvoice>
<mergeinvoice>
<inputfile id="3">file2.xml</inputfile>
<address>
<name1>Title1001257028</name1>
<add1>address 1</add1>
</address>
<trans>
<header>
<h1text>mixed text</h1text>
</header>
<body>
<accountno>000456700</accountno>
</body>
</trans>
</mergeinvoice>
</OrigResponse>