XSLT转换,源包含<和>

时间:2014-04-29 19:52:10

标签: xml xslt

我有以下格式的输入XML:

<Plugins>
   <AssemblyName>msoft, Version=5.0, Culture=neutral, PublicKeyToken=null</AssemblyName>
   <TypeName>BT</TypeName>
   <Version>?</Version>
   <Configuration>&lt;AppData xmlns="http://tempuri.org/AppData.xsd"&gt;
      &lt;Readers&gt;
        &lt;Id&gt;1234&lt;/Id&gt;
        &lt;Port&gt;6500&lt;/Port&gt;
        &lt;Type&gt;M200&lt;/Type&gt;
        &lt;Active&gt;Yes&lt;/Active&gt;
      &lt;/Readers&gt;
      &lt;Readers&gt;
        ...
   </Configuration>
   ...
</Plugins>

我想将它转换为另一个XML,它应该是下面的那个,

<Plugins>
   <MyReaders>
       <DeviceId>1234</DeviceId>
       <PortNum>6500</PortNum>
       <ModelType>M200</ModelType>
       <Active>Yes</Active>
   </MyReaders>
</Plugins>

我想使用XSLT进行转换。我怎么能这样做?

1 个答案:

答案 0 :(得分:1)

我将使用您提供的示例,并假设它格式正确。为此,我在您的源代码中添加了四行:现在是:

<Plugins>
    <AssemblyName>msoft, Version=5.0, Culture=neutral, PublicKeyToken=null</AssemblyName>
    <TypeName>BT</TypeName>
    <Version>?</Version>
    <Configuration>
        &lt;AppData xmlns="http://tempuri.org/AppData.xsd"&gt;
          &lt;Readers&gt;
            &lt;Id&gt;1234&lt;/Id&gt;
            &lt;Port&gt;6500&lt;/Port&gt;
            &lt;Type&gt;M200&lt;/Type&gt;
            &lt;Active&gt;Yes&lt;/Active&gt;
          &lt;/Readers&gt;
          &lt;Readers&gt;
          &lt;/Readers&gt;
        &lt;/AppData&gt;
    </Configuration>
</Plugins>

您将需要XSLT 2.0处理器或XSLT 1.0扩展。这是使用XSLT 2.0的解决方案:

<xsl:stylesheet 
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 
    xmlns:tempuri="http://tempuri.org/AppData.xsd"
    exclude-result-prefixes="tempuri"
    version="2.0">

    <xsl:output method="xml" indent="yes" use-character-maps="angle-brackets"/>
    <xsl:character-map name="angle-brackets">
        <xsl:output-character character="&lt;" string="&lt;"/>
        <xsl:output-character character="&gt;" string="&gt;"/>
    </xsl:character-map>

    <xsl:strip-space elements="*"/>

    <xsl:template match="Plugins">
        <xsl:copy>
            <xsl:apply-templates select="Configuration"/>
        </xsl:copy>
    </xsl:template>
    <xsl:template match="Configuration">
        <xsl:variable name="input">
            <xsl:value-of select="."/>
        </xsl:variable>
        <xsl:apply-templates select="document(concat('data:text/xml,',$input))/tempuri:AppData/tempuri:Readers" />
    </xsl:template>

    <xsl:template match="tempuri:Readers">
            <MyReaders>
                <DeviceId><xsl:value-of select="tempuri:Id"/></DeviceId>
                <PortNum><xsl:value-of select="tempuri:Port"/></PortNum>
                <ModelType><xsl:value-of select="tempuri:Type"/></ModelType>
                <Active><xsl:value-of select="tempuri:Active"/></Active>
            </MyReaders>
    </xsl:template>
</xsl:stylesheet>

它实际上会处理您的数据两次。使用Configuration转换character-map内容中的尖括号。结果放在变量$input内,使用document()函数将其转换为节点。

由于您的数据位于命名空间中,因此必须在XPath表达式前加上它。使用exclude-result-prefixes="tempuri"从结果中删除了名称空间声明。