XSLT从XML到XML的转换

时间:2013-09-20 13:15:28

标签: xslt

我正在尝试将所有<type>值更新为小写,现在工作正常。此外,我想将命名空间从v2.0更改为v1.0并且它工作正常,但我不希望为下面的“category”和“authList”等子元素声明命名空间。我想做的最重要的事情是将<Name>元素替换为<Number>以及新的数值。 所以我想在这里尝试的两件突出的事情是: 1.使用新数值将“Name”元素更新为“Number”。 (必须为我) 2.如果可能,从文档中的“类别”或其他子元素中删除命名空间,但根元素除外。 (如果可能)

请告诉我我的XSLT有什么问题。非常感谢。我希望我能够保持简单的问题。

XML输入:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" 
    xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<soapenv:Header/>
<soapenv:Body>
  <ns6:QueryResponse version="2.0" xmlns="" xmlns:ns6="http://www.abc.com/s/v2.0">
     <category>
        <categoryList>
           <cat>
              <type>SUPER</type>
              <value>gg44</value>
           </cat>
           <cat>
              <type>SUPER2</type>
              <value>fff</value>
           </cat>
        </categoryList>
     </category>
     <AuthList>
        <sAuthority>
           <Name>P</Name>
    </sAuthority>               
<AuthList>               
 </ns6:QueryResponse>
 </soapenv:Body>
 </soapenv:Envelope>

XML输出 -

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" 
    xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<soapenv:Header/>
<soapenv:Body>
  <v1:QueryResponse version="1.0" xmlns:v1="http://www.abc.com/s/v1.0">
     <category xmlns:ns2="http://www.abc.com/s/v1.0" xmlns:ns3="http://www.abc.com/s/v2.0">
        <categoryList>
           <cat>
              <type>super</type>
              <value>gg44</value>
           </cat>
           <cat>
              <type>super2</type>
              <value>fff</value>
           </cat>
        </categoryList>
     </category>
     <AuthList xmlns:ns2="http://www.abc.com/s/v1.0"  xmlns:ns3="http://www.abc.com/s/v2.0">
        <sAuthority>
           <Name>P</Name>
    </sAuthority>               
<AuthList>               
 </v1:QueryResponse>
 </soapenv:Body>
 </soapenv:Envelope>

XSLT代码:

<?xml version="1.0" encoding="utf-8"?>
   <xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:old="http://www.abc.com/s/v2.0"
exclude-result-prefixes="old"
xmlns:v1="http://www.abc.com/s/v1.0">
<xsl:output method="xml" encoding="utf-8" indent="yes"
   version="1.0" />

<!-- Some parameters declered -->
<xsl:param name="newversion" select="'1.0'" />   
<xsl:param name="P_1" select="'1'" />
<xsl:param name="C_2" select="'2'" />
<xsl:param name="S_3" select="'3'" />
<xsl:param name="F_4" select="'4'" />   

<!-- This is to update namespace from v2.0 to v1.0 -->
<xsl:template match="node()|@*">
    <xsl:copy>
        <xsl:apply-templates select="node()|@*" />
    </xsl:copy>
</xsl:template>

<xsl:template match="old:*">
    <xsl:element name="v1:{local-name()}">
        <xsl:apply-templates select="@* | node()" />
    </xsl:element>
</xsl:template>

<xsl:template match="old:QueryResponse/@version">
    <xsl:attribute name="version"> 
    <xsl:value-of select="$newversion" /> 
    </xsl:attribute>
</xsl:template>

<!-- This is to update the Name to Number -->
<xsl:template match="sAuthority/Name">
  <xsl:choose>
   <xsl:when test=".='P'">
       <xsl:element name="Number">
       <xsl:value-of select="$P_1"/>           
       </xsl:element>
   </xsl:when>
   <xsl:when test=".='C'">
       <xsl:element name="Number">
       <xsl:value-of select="$C_2"/>
       </xsl:element>                      
   </xsl:when>       
   <xsl:when test=".='S'">
       <xsl:element name="Number">
       <xsl:value-of select="$S_3"/>
       </xsl:element>          
   </xsl:when>  
   <xsl:when test=".='F'">
       <xsl:element name="Number">
       <xsl:value-of select="$F_4"/>
       </xsl:element>      
   </xsl:when>                   
  </xsl:choose>
  </xsl:template>  

 <!-- This is to update Upper case values to lower case for all the type elements in  the XML input whereever they are in the XML -->
 <xsl:template match="type/text()">
   <xsl:value-of
       select="translate (., 'ABCDEFGHIJKLMNOPQRSTUVWXYZ','abcdefghijklmnopqrstuvwxyz')" />
  </xsl:template>

  </xsl:stylesheet>

预期输出: -

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" 
    xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<soapenv:Header/>
<soapenv:Body>
  <v1:QueryResponse version="1.0" xmlns:v1="http://www.abc.com/s/v1.0">
     <category>
        <categoryList>
           <cat>
              <type>super</type>
              <value>gg44</value>
           </cat>
           <cat>
              <type>super2</type>
              <value>fff</value>
           </cat>
        </categoryList>
     </category>
     <AuthList>
        <sAuthority>
           <Number>1</Number>
    </sAuthority>               
<AuthList>               
 </v1:QueryResponse>
 </soapenv:Body>
 </soapenv:Envelope>

谢谢,

1 个答案:

答案 0 :(得分:1)

如果您要从类别 authlist 元素中删除名称空间声明,请尝试将此附加模板添加到XSLT

<xsl:template match="*[namespace-uri()='']">
    <xsl:element name="{local-name()}">
        <xsl:apply-templates select="node()|@*" />
    </xsl:element>
</xsl:template>

这是有效的,因为 xsl:copy 将复制输入XML中的任何命名空间声明(无论是否使用它们),而是复制您创建新元素的元素,而不是“我有声明。

从将名称更改为数字后,您的XSLT看起来已经正确执行此操作。但是,我建议您不要使用 xsl:choose ,而是考虑编写一系列模板,如下所示:

<xsl:template match="sAuthority/Name">
  <number>
    <xsl:apply-templates />
  </number>
</xsl:template>

<xsl:template match="Name/text()[.='P']">
  <xsl:value-of select="$P_1"/>
</xsl:template>

<xsl:template match="Name/text()[.='C']">
  <xsl:value-of select="$C_2"/>
</xsl:template>

<xsl:template match="Name/text()[.='S']">
  <xsl:value-of select="$S_3"/>
</xsl:template>

<xsl:template match="Name/text()[.='F']">
  <xsl:value-of select="$F_4"/>
</xsl:template>