删除名为xfdf:field的XML标记(带有命名空间)

时间:2011-02-23 22:28:30

标签: xslt

我想从XML文件中删除XML元素。我要删除的标记名为xfdf:field。 如何在我的xslt中指定它?我试过这个,我收到错误说“org.apache.xpath.domapi.XPathStylesheetDOM3Exception:前缀必须解析为命名空间:xfdf”。

这是我的xslt。

<xsl:stylesheet version="1.0"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:output omit-xml-declaration="yes" />
    <xsl:template match="node()|@*">
        <xsl:copy>
            <xsl:apply-templates select="node()|@*" />
        </xsl:copy>
    </xsl:template>
    <xsl:template match="xfdf:field"></xsl:template>
</xsl:stylesheet>

这是我的xml。

<xfa:datasets 
 xmlns:xfa="http://www.xfa.org/schema/xfa-data/1.0/"
 xmlns:dd="http://ns.adobe.com/data-description/" xmlns:tns="http://hostname"
 xmlns:xfdf="http://ns.adobe.com/xfdf/">
    <xfa:data>
        <tns:form xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
            <tns:formHeader>
                <tns:formId>formid</tns:formId>
                <tns:revId>Rev123</tns:revId>
                <tns:agencyId>agency</tns:agencyId>
                <tns:progId>program</tns:progId>
                <tns:serviceId>service</tns:serviceId>
            </tns:formHeader>
            <tns:formFields>
                <tns:date>08-13-1967</tns:date>
                <tns:agreementBetween></tns:agreementBetween>
                <tns:ncr>xxxx</tns:ncr>
                <tns:formConfirmationInfo>
                    <tns:confNbrLbl>nbrlabel</tns:confNbrLbl>
                    <tns:confNbrData>1231</tns:confNbrData>
                    <tns:custNameLbl>3332</tns:custNameLbl>
                    <tns:custNameData>dasdas</tns:custNameData>
                    <tns:dateLbl>date</tns:dateLbl>
                    <tns:dateData>01012001</tns:dateData>
                </tns:formConfirmationInfo>
            </tns:formFields>
            <xfdf:field xmlns:xfdfi="http://ns.adobe.com/xfdf-transition/"
                        xfdfi:original="FSAPPLICATIONDATA_">
                <!--irrelevant data omitted-->
            </xfdf:field>
        </tns:form>
    </xfa:data>
</xfa:datasets>

1 个答案:

答案 0 :(得分:3)

您需要在XSLT文件中指定命名空间:

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" 
        xmlns:xsl="http://www.w3.org/1999/XSL/Transform"  
        xmlns:xfdf="http://ns.adobe.com/xfdf/">