将xml文件转换为其他xml格式
本文关键字:xml 其他 格式 转换 文件 | 更新日期: 2023-09-27 18:08:16
我有一个关于转换xml文件的问题。我有一个xml文件(xml1),它有这样的结构:
<Info>
<cars>
<car>
<id>1</id>
<brand>Pegeout</brand>
</car>
<car>
<id>2</id>
<brand>Volkwagen</brand>
</car>
</cars>
<distances>
<distance>
<id_car>1</id_car>
<distance_km>111</distance_km>
</distance>
<distance>
<id_car>1</id_car>
<distance_km>23</distance_km>
</distance>
</distances>
</Info>
我知道我可以使用xslt将一个xml转换为另一个xml。我如何生成xsl样式表?c#中存在设计器吗?
谁能告诉我如何在c#中使用XSL样式表将这个xml文件格式转换为这个格式(xml2):
<Info>
<cars>
<car>
<id>1</id>
<brand>Pegeout</brand>
<distance>
<distance_km>111</distance_km>
<distance_km>23</distance_km>
</distance>
</car>
<car>
<id>2</id>
<brand>Volkwagen</brand>
</car>
</cars>
</Info>
定义一个键,通过id引用元素:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output indent="yes"/>
<xsl:strip-space elements="*"/>
<xsl:key name="id" match="distance" use="id_car"/>
<xsl:template match="@* | node()">
<xsl:copy>
<xsl:apply-templates select="@* | node()"/>
</xsl:copy>
</xsl:template>
<xsl:template match="car">
<xsl:copy>
<xsl:apply-templates select="@* | node()"/>
<xsl:variable name="ref-dist" select="key('id', id)/distance_km"/>
<xsl:if test="$ref-dist">
<distance>
<xsl:apply-templates select="$ref-dist"/>
</distance>
</xsl:if>
</xsl:copy>
</xsl:template>
<xsl:template match="Info/distances"/>
</xsl:stylesheet>