使用XSLT为所有节点生成XML的xpath

时间:2015-08-15 21:10:34

标签: java xml xslt xpath xml-parsing

我试图找到一种方法将XML标记转换为各自的唯一地址,如xPath。 Nd我找到了一个XSLT,其中处理XML并且仅为没有子元素和属性的节点创建唯一地址。 [link]:Generate/get xpath from XML node java

XSLT:

<xsl:stylesheet version="1.0"  xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:output omit-xml-declaration="yes" indent="yes"/>
    <xsl:strip-space elements="*"/>

    <xsl:variable name="vApos">'</xsl:variable>

    <xsl:template match="*[@* or not(*)] ">
      <xsl:if test="not(*)">
         <xsl:apply-templates select="ancestor-or-self::*" mode="path"/>
         <xsl:value-of select="concat('=',$vApos,.,$vApos)"/>
         <xsl:text>&#xA;</xsl:text>
        </xsl:if>
        <xsl:apply-templates select="@*|*"/>
    </xsl:template>

    <xsl:template match="*" mode="path">
        <xsl:value-of select="concat('/',name())"/>
        <xsl:variable name="vnumPrecSiblings" select=
         "count(preceding-sibling::*[name()=name(current())])"/>
        <xsl:if test="$vnumPrecSiblings">
            <xsl:value-of select="concat('[', $vnumPrecSiblings +1, ']')"/>
        </xsl:if>
    </xsl:template>

    <xsl:template match="@*">
        <xsl:apply-templates select="../ancestor-or-self::*" mode="path"/>
        <xsl:value-of select="concat('[@',name(), '=',$vApos,.,$vApos,']')"/>
        <xsl:text>&#xA;</xsl:text>
    </xsl:template>
</xsl:stylesheet>

传递给此

    <?xml version="1.0" encoding="UTF-8"?>
<root>
    <main>
        <tag1>001</tag1>
        <tag2>002</tag2>
        <tag3>
        <tag4>004</tag4>
        </tag3>
        <tag2>002</tag2>
        <tag5>005</tag5>
    </main>
</root>

产生

/root/main/tag1='001' /root/main/tag2='002' /root/main/tag3/tag4='004' /root/main/tag2[2]='002' /root/main/tag5='005'

所以我需要以下列方式生成xslt

/root
/root/main
/root/main/tag1
/root/main/tag2
/root/main/tag3
/root/main/tag3/tag4
/root/main/tag2[2]
/root/main/tag5

我也不需要价值观。所以请帮我解决这个问题

1 个答案:

答案 0 :(得分:3)

您的结果可以通过以下方式简单地生成:

XSLT 1.0

<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="text" encoding="UTF-8"/>

<xsl:template match="*">
    <xsl:for-each select="ancestor-or-self::*">
        <xsl:value-of select="name()" />
        <xsl:variable name="i" select="count(preceding-sibling::*[name()=name(current())])"/>
        <xsl:if test="$i">
            <xsl:value-of select="concat('[', $i + 1, ']')"/>
        </xsl:if>
        <xsl:if test="position()!=last()">
            <xsl:text>/</xsl:text>
        </xsl:if>
    </xsl:for-each>
    <xsl:text>&#10;</xsl:text>
    <xsl:apply-templates select="*"/>
</xsl:template>

</xsl:stylesheet>

请注意,这不会处理属性(或除元素之外的任何其他类型的节点)。