我有一个生成XML输出的程序。 具有默认命名空间的程序如下所示:
<n0:eCPR xmlns:n0="http://www.dir.ca.gov/dlse/CPR-Prod-Test/CPR.xsd"
xmlns:prx="urn:sap.com:proxy:DV4:/1SAI/TAS1F59A417878D36573F1D:700:2013/05/24">
<n0:contractorInfo>
<n0:contractorName>test_user</n0:contractorName>
<n0:contractorAddress>
<n0:street></n0:street>
<n0:city></n0:city>
<n0:state/>
<n0:zip/>
</n0:contractorAddress>
</n0:contractorInfo>
</n0:eCPR>
如果我删除默认命名空间,输出看起来像这样
<eCPR>
<contractorInfo>
<contractorName>test_user</contractorName>
<contractorAddress>
<street></street>
<city></city>
<state/>
<zip/>
</contractorAddress>
<insuranceNum></insuranceNum>
<contractorEmail></contractorEmail>
</contractorInfo>
</eCPR>
我希望它看起来像
<CPR:eCPR xmlns:CPR="http://www.dir.ca.gov/dlse/CPR-Prod-Test/CPR.xsd">
<CPR:contractorInfo>
<CPR:contractorName>test_user</CPR:contractorName>
<CPR:contractorAddress>
<CPR:street>999 Carrier Rd</CPR:street>
<CPR:city>Oakland</CPR:city>
<CPR:state>CA</CPR:state>
<CPR:zip>94612</CPR:zip>
</CPR:contractorAddress>
</CPR:contractorInfo>
</CPR:eCPR>
我用来删除默认命名空间的代码是:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" indent="yes"/>
<xsl:template match="/|comment()|processing-instruction()">
<xsl:copy>
<xsl:apply-templates/>
</xsl:copy>
</xsl:template>
<xsl:template match="*">
<xsl:element name="{local-name()}">
<xsl:apply-templates select="@*|node()"/>
</xsl:element>
</xsl:template>
<xsl:template match="@*">
<xsl:attribute name="{local-name()}">
<xsl:value-of select="."/>
</xsl:attribute>
</xsl:template>
</xsl:stylesheet>
请帮忙。
由于
答案 0 :(得分:2)
鉴于您的输入没有属性(或评论或处理说明),我认为没有理由不能做到这一点:
XSLT 1.0
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:CPR="http://www.dir.ca.gov/dlse/CPR-Prod-Test/CPR.xsd">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:strip-space elements="*"/>
<xsl:template match="*">
<xsl:element name="CPR:{local-name()}">
<xsl:apply-templates/>
</xsl:element>
</xsl:template>
</xsl:stylesheet>