当我有两个XML对象时,如何使用XPath将它们与完全相等(所有相同的节点,属性和值)进行比较?
答案 0 :(得分:7)
在XPath 2.0中使用标准函数deep-equal()。
Xpath 1.0没有这样的功能,因此需要在托管XPath的语言中进行比较。
如果您必须使用XPath 1.0 : Generate/get xpath from XML node java ,您可以使用此解决方案来获取{{1}的每个节点的XPath表达式集合和Document1
的每个节点的另一个XPath表达式集合。然后比较两个集合 - 它们应该具有相同数量的表达式,并且表达式必须是等价的。
或者,您可以生成只验证两个集合包含相同数量的表达式,并在Document2
上应用Document1
的每个表达式。
答案 1 :(得分:5)
XPath 2.0的功能与此完全相同:http://www.w3.org/TR/xpath-functions/#func-deep-equal。 XPath 1.0没有任何可比性,你需要使用XPath 1.0使用的任何主机语言自己滚动。
答案 2 :(得分:0)
我已经使用XSLT 1.0和Bash的组合来根据md5sums比较特定节点。
使用test =" $ index = $ navigator",因为我无法直接根据节点[$ navigator]进行复制。
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ns="http://www.example.org">
<xsl:output method="xml" omit-xml-declaration="yes"/>
<xsl:param name="navigator"/>
<xsl:param name="part"/>
<xsl:template match="/">
<xsl:for-each select="/ns:mappings/ns:mapping">
<xsl:variable name="index" select="position()" />
<xsl:if test="$index=$navigator">
<xsl:choose>
<xsl:when test="$part='source'">
<xsl:copy-of select="ns:source/ns:taxonpath"/>
</xsl:when>
<xsl:when test="$part='target'">
<xsl:copy-of select="ns:target/ns:taxonpath"/>
</xsl:when>
<xsl:when test="$part='mapping'">
<xsl:copy-of select="."/>
</xsl:when>
</xsl:choose>
</xsl:if>
</xsl:for-each>
</xsl:template>
</xsl:stylesheet>
mappingcount=$(cat mapping.xml | grep "<mapping>" | wc -l)
counter=1
while [ $counter -lt $mappingcount ]; do
sourcehash=$(xsltproc --stringparam navigator $counter --stringparam part source compare.xslt mapping.xml | md5sum | cut -d " " -f1)
targethash=$(xsltproc --stringparam navigator $counter --stringparam part target compare.xslt mapping.xml | md5sum | cut -d " " -f1)
if [ "$sourcehash" == "$targethash" ]; then
xsltproc --stringparam navigator $counter --stringparam part mapping compare.xslt mapping.xml
fi
let counter=counter+1
done
和mapping.xml的一部分
<mappings xmlns="http://www.example.org">
<mapping>
<source>
<taxonpath>
<taxon>
<id>c001f86a-4f8f-4420-bd78-381c615ecedc</id>
<entry>Aardrijkskunde</entry>
</taxon>
<taxon>
<id>65c33fa0-420a-4399-a6f8-595294179df3</id>
<entry>Weer en klimaat</entry>
</taxon>
</taxonpath>
</source>
<relationship>ter info</relationship>
<target>
<taxonpath>
<taxon>
<id>c001f86a-4f8f-4420-bd78-381c615ecedc</id>
<entry>Aardrijkskunde</entry>
</taxon>
<taxon>
<id>65c33fa0-420a-4399-a6f8-595294179df3</id>
<entry>Systeem aarde</entry>
</taxon>
</taxonpath>
</target>
</mapping>
</mappings>