我想用另一个XML文件的等效节点替换XML文件的某些节点。由于这不具备足够的挑战性,我希望用于比较的ID是某个孩子的价值。
" old" XML看起来像:
<?xml version="1.0" encoding="UTF-8"?>
<Root>
<Documents>
<Document id="001">
<Tags>
<Tag id="document_id">someIDfilename.pdf</Tag>
<Tag id="document_type">Type A</Tag>
<Tag id="document_text">A very important document of course.</Tag>
<Tags>
</Document>
<Document id="018">
<Tags>
<Tag id="document_id">someOtherIDfilename.pdf</Tag>
<Tag id="document_type">Type B</Tag>
<Tag id="document_text">Another very important document.</Tag>
<Tags>
</Document>
</Documents>
</Root>
第二个Docoument应替换为以下XML的等价,其中我必须使用的ID是document_id的值(因为Document节点的&#34; id&#34;有时会被覆盖或更改):
<?xml version="1.0" encoding="UTF-8"?>
<Root>
<Documents>
<Document id="014">
<Tags>
<Tag id="document_id">someOtherIDfilename.pdf</Tag>
<Tag id="document_type">Type B</Tag>
<Tag id="document_text">The oh so important new document text.</Tag>
<Tags>
</Document>
</Documents>
</Root>
结果预计如下:
<?xml version="1.0" encoding="UTF-8"?>
<Root>
<Documents>
<Document id="001">
<Tags>
<Tag id="document_id">someIDfilename.pdf</Tag>
<Tag id="document_type">Type A</Tag>
<Tag id="document_text">A very important document of course.</Tag>
<Tags>
</Document>
<Document id="018">
<Tags>
<Tag id="document_id">someOtherIDfilename.pdf</Tag>
<Tag id="document_type">Type B</Tag>
<Tag id="document_text">The oh so important new document text.</Tag>
<Tags>
</Document>
</Documents>
</Root>
Q1:可以通过XSLT实现吗?或者我必须使用Java / DOM吗?
Q2:如果Q1 ==是:有人可以解决这个问题吗?
最佳!菲利普
答案 0 :(得分:2)
使用像Saxon 9这样的XSLT 2.0处理器:
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
exclude-result-prefixes="xs"
version="2.0">
<xsl:param name="doc2-url" select="'test2014032603.xml'"/>
<xsl:variable name="doc2" select="doc($doc2-url)"/>
<xsl:key name="id" match="Document" use="Tags/Tag[@id = 'document_id']"/>
<xsl:template match="@* | node()">
<xsl:copy>
<xsl:apply-templates select="@* , node()"/>
</xsl:copy>
</xsl:template>
<xsl:template match="Document[key('id', Tags/Tag[@id = 'document_id'], $doc2)]">
<xsl:copy>
<xsl:copy-of select="@id, key('id', Tags/Tag[@id = 'document_id'], $doc2)/node()"/>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
使用XSLT 1.0,也可以在密钥使用的文档之间切换上下文,代码最终会被弄错:
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
<xsl:param name="doc2-url" select="'test2014032603.xml'"/>
<xsl:variable name="doc2" select="document($doc2-url)"/>
<xsl:key name="id" match="Document" use="Tags/Tag[@id = 'document_id']"/>
<xsl:template match="@* | node()" name="identity">
<xsl:copy>
<xsl:apply-templates select="@* | node()"/>
</xsl:copy>
</xsl:template>
<xsl:template match="Document[Tags/Tag[@id = 'document_id']]">
<xsl:variable name="this" select="."/>
<xsl:for-each select="$doc2">
<xsl:choose>
<xsl:when test="key('id', $this/Tags/Tag[@id = 'document_id'])">
<xsl:for-each select="key('id', $this/Tags/Tag[@id = 'document_id'])">
<xsl:copy>
<xsl:copy-of select="$this/@id"/>
<xsl:copy-of select="node()"/>
</xsl:copy>
</xsl:for-each>
</xsl:when>
<xsl:otherwise>
<xsl:copy-of select="$this"/>
</xsl:otherwise>
</xsl:choose>
</xsl:for-each>
</xsl:template>
</xsl:stylesheet>