使用XSL替换默认命名空间

时间:2014-11-13 08:46:34

标签: xml xslt replace namespaces

我认为这很简单,但现在我花了大约4个小时才解决这个问题。我想要做的就是更改此XML的默认命名空间:

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<scenarios xmlns="http://my.url/xmlns/scenarios/v1.0.0">
    <scenarios>
        <scenario id="1" name="00_reset" active="true">
            <events>
                <sensorevent id="1" name="resetButtonEvent">
                    <sensors>
                        <sensor deviceid="46"/>
                    </sensors>
                </sensorevent>
            </events>
        </scenario>
    </scenarios>
    <systemstates>
        <systemstate id="1" default="true" name="00_visitor_reset" display="true" publish="true" type="BOOLEAN"/>
    </systemstates>
</scenarios>

&#34; V1.0.0&#34;应更改为&#34; v1.1.0&#34;。但我能想出的就是:

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:old="http://my.url/xmlns/scenarios/v1.0.0" 
xmlns:new="http://my.url/xmlns/scenarios/v1.1.0" 
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:template match="@*|node()">
        <xsl:copy>
            <xsl:apply-templates select="@*|node()"/>
        </xsl:copy>
    </xsl:template>
    <xsl:template match="old:*">
        <xsl:element name="{local-name()}" namespace="http://my.url/xmlns/scenarios/v1.1.0">
            <xsl:apply-templates select="@* | node()" />
        </xsl:element>
    </xsl:template>
</xsl:stylesheet>

产生:

<?xml version="1.0" encoding="UTF-8"?><ns0:scenarios xmlns:ns0="http://my.url/xmlns/scenarios/v1.1.0">
    <ns1:scenarios xmlns:ns1="http://my.url/xmlns/scenarios/v1.1.0">
        <ns2:scenario xmlns:ns2="http://my.url/xmlns/scenarios/v1.1.0" id="1" name="00_reset" active="true">
            <ns3:events xmlns:ns3="http://my.url/xmlns/scenarios/v1.1.0">
                <ns4:sensorevent xmlns:ns4="http://my.url/xmlns/scenarios/v1.1.0" id="1" name="resetButtonEvent">
                    <ns5:sensors xmlns:ns5="http://my.url/xmlns/scenarios/v1.1.0">
                        <ns6:sensor xmlns:ns6="http://my.url/xmlns/scenarios/v1.1.0" deviceid="46"/>
                    </ns5:sensors>
                </ns4:sensorevent>
            </ns3:events>
        </ns2:scenario>
    </ns1:scenarios>
    <ns7:systemstates xmlns:ns7="http://my.url/xmlns/scenarios/v1.1.0">
        <ns8:systemstate xmlns:ns8="http://my.url/xmlns/scenarios/v1.1.0" id="1" default="true" name="00_visitor_reset" display="true" publish="true" type="BOOLEAN"/>
    </ns7:systemstates>
</ns0:scenarios>

这不是我想要的,因为唯一应该改变的是根元素中的命名空间声明。如何在不添加前缀的情况下使用XSLT1.0将默认命名空间从http://my.url/xmlns/scenarios/v1.0.0更改为http://my.url/xmlns/scenarios/v1.1.0

3 个答案:

答案 0 :(得分:1)

尝试

<xsl:stylesheet version="1.0" xmlns:old="http://my.url/xmlns/scenarios/v1.0.0" 
xmlns="http://my.url/xmlns/scenarios/v1.1.0" 
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:template match="@*|node()">
        <xsl:copy>
            <xsl:apply-templates select="@*|node()"/>
        </xsl:copy>
    </xsl:template>
    <xsl:template match="old:*">
        <xsl:element name="{local-name()}">
            <xsl:apply-templates select="@* | node()" />
        </xsl:element>
    </xsl:template>
</xsl:stylesheet>

如果这没有帮助,那么尝试使用不同的XSLT 1.0处理器。

答案 1 :(得分:0)

XSLT 1.0允许XSLT处理器选择它喜欢的任何名称空间前缀,因此这个输出符合要求,但非常不友好。在XSLT 2.0中,除非存在冲突,否则处理器需要选择您要求的前缀,因此该样式表应该生成您想要的输出。所以我认为您的选择是通过XSLT 2.0处理器或通过更加用户友好的XSLT 1.0处理器运行代码。

答案 2 :(得分:0)

我现在已经转换为Saxon作为XSLT处理器,它显示了所需的输出。我想避免额外的依赖,但似乎没有别的办法。感谢Martin Honnen和Michael Kay!