我有以下 XML:
<types>
<type>
<name>derived</name>
<superType>base</superType>
<properties>
<property>
<name>B1</name>
</property>
<property>
<name>D1</name>
</property>
</properties>
</type>
<type>
<name>base</name>
<properties>
<property>
<name>B1</name>
</property>
</properties>
</type>
</types>
我想转换成这个输出:
derived
D1
base
B1
请注意,节点/types/type[name='derived']/properties/property[name='B1']
已被跳过,因为它存在于基本类型中:/types/type[name='base']/properties/property[name='B1']
.
我想出了这个 XSLT:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="text" omit-xml-declaration="yes"/>
<xsl:strip-space elements="*"/>
<!-- Do nothing for base class properties -->
<!-- Wouldn't be necessary if the match criteria could be applied in the select -->
<xsl:template match="property"/>
<xsl:template match="property[not(//type[name=current()/../../superType]/properties/property[name=current()/name])]">
<xsl:text>	</xsl:text>
<xsl:value-of select="name"/>
<xsl:text> </xsl:text>
</xsl:template>
<xsl:template match="types/type">
<xsl:value-of select="name"/>
<xsl:text> </xsl:text>
<xsl:apply-templates select="./properties"/>
<xsl:text> </xsl:text>
</xsl:template>
</xsl:stylesheet>
这可行(使用 Notepad++ 中的 XML 工具插件),但not(//type[name=current()/../../superType]/properties/property[name=current()/name])
XPath 表达式效率极低:当应用于 200K 行 XML 文件时,转换需要280 秒。如果没有这个 XPath 表达式,转换只需要2 秒。
有什么方法可以加快速度吗?