我有以下格式的输入XML:
<Plugins>
<AssemblyName>msoft, Version=5.0, Culture=neutral, PublicKeyToken=null</AssemblyName>
<TypeName>BT</TypeName>
<Version>?</Version>
<Configuration><AppData xmlns="http://tempuri.org/AppData.xsd">
<Readers>
<Id>1234</Id>
<Port>6500</Port>
<Type>M200</Type>
<Active>Yes</Active>
</Readers>
<Readers>
...
</Configuration>
...
</Plugins>
我想将它转换为另一个XML,它应该是下面的那个,
<Plugins>
<MyReaders>
<DeviceId>1234</DeviceId>
<PortNum>6500</PortNum>
<ModelType>M200</ModelType>
<Active>Yes</Active>
</MyReaders>
</Plugins>
我想使用XSLT进行转换。我怎么能这样做?
答案 0 :(得分:1)
我将使用您提供的示例,并假设它格式正确。为此,我在您的源代码中添加了四行:现在是:
<Plugins>
<AssemblyName>msoft, Version=5.0, Culture=neutral, PublicKeyToken=null</AssemblyName>
<TypeName>BT</TypeName>
<Version>?</Version>
<Configuration>
<AppData xmlns="http://tempuri.org/AppData.xsd">
<Readers>
<Id>1234</Id>
<Port>6500</Port>
<Type>M200</Type>
<Active>Yes</Active>
</Readers>
<Readers>
</Readers>
</AppData>
</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="<" string="<"/>
<xsl:output-character character=">" string=">"/>
</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"
从结果中删除了名称空间声明。