xml - 更改 XML 元素顺序,同时保持结构层次和属性

标签 xml xslt

我想改变一些 XML 元素的顺序。 XML 很复杂并且由单独的过程生成 - 我不需要更改它的费用,所以我希望使用 XSLT 来更正元素顺序。

我不是 XSLT 专家 (!),所以我查找了一些片段并发现了一些东西,根据我的情况进行了一些小的改动,几乎 可以工作。我目前拥有的最佳版本以正确的顺序输出元素,但删除了所有属性。

我用我的问题的相关特征创建了一个更简单的 xml 和相应的 xsl。

这是(虚拟的)示例 xml:

<?xml version="1.0" encoding="UTF-8"?>
<Companies xmlns="company:fruit:ns" Version="1.0">
  <Description>Some example companies and fruit shipments</Description>
  <Company CompanyId="Acme">
    <Description>Some example shipments</Description>
    <Shipment Id="ABC">
      <Description>Some apples</Description>
      <Fruit>
        <Apples>10</Apples>
      </Fruit>
    </Shipment>
    <Shipment Id="DEF">
      <Description>Some oranges and pears</Description>
      <Fruit>
        <Oranges>20</Oranges>
        <Pears>20</Pears>
      </Fruit>
    </Shipment>
    <Shipment Id="JKL">
      <Description>Empty</Description>
      <Fruit/>
    </Shipment>
    <Fruit/>
  </Company>
  <Fruit/>
</Companies>

问题是在 Company-Description 元素之后应该有一个 Company-Fruit 元素(而不是在所有 Shipment 元素之后)并且在 Companies-Description 元素之后应该有一个 Companies-Fruit 元素(而不是在所有 Shipment 元素之后)公司-公司元素)。我使用以下 xsl 转换来更正元素排序:

<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="2.0" xpath-default-namespace="company:fruit:ns">
  <!-- See http://xsltbyexample.blogspot.com/2008/02/re-arrange-order-of-elements-in-xml.html -->
  <xsl:output omit-xml-declaration="no" indent="yes" method="xml" encoding="utf-8"/>
  <xsl:strip-space elements="*"/>
  <xsl:template match="*">
    <xsl:apply-templates select="self::*" mode="copy"/>
  </xsl:template>
  <xsl:template match="Company/Description">
    <xsl:message>Matched Company Description</xsl:message>
    <xsl:apply-templates select="self::*" mode="copy"/>
    <xsl:apply-templates select="../Fruit" mode="copy"/>
  </xsl:template>
  <xsl:template match="Companies/Description">
    <xsl:message>Matched Companies Description</xsl:message>
    <xsl:apply-templates select="self::*" mode="copy"/>
    <xsl:apply-templates select="../Fruit" mode="copy"/>
  </xsl:template>
  <xsl:template match="Company/Fruit"/>
  <xsl:template match="Companies/Fruit"/>
  <xsl:template match="*" mode="copy">
    <xsl:copy>
      <xsl:apply-templates/>
    </xsl:copy>
  </xsl:template>
  <xsl:template match="text()">
    <xsl:value-of select="."/>
  </xsl:template>
</xsl:stylesheet>

生成的 xml 具有正确的顺序,但大部分属性已被删除:

<?xml version="1.0" encoding="utf-8"?>
<Companies xmlns="company:fruit:ns">
   <Description>Some example companies and fruit shipments</Description>
   <Fruit/>
   <Company>
      <Description>Some example shipments</Description>
      <Fruit/>
      <Shipment>
         <Description>Some apples</Description>
         <Fruit>
            <Apples>10</Apples>
         </Fruit>
      </Shipment>
      <Shipment>
         <Description>Some oranges and pears</Description>
         <Fruit>
            <Apples>20</Apples>
            <Pears>20</Pears>
         </Fruit>
      </Shipment>
      <Shipment>
         <Description>Empty</Description>
         <Fruit/>
      </Shipment>
   </Company>
</Companies>

我欢迎 XSLT 专家的任何建议!

最佳答案

应保持几乎所有输入不变的转换最好从身份模板开始。

<xsl:template match="node() | @*">
  <xsl:copy>
    <xsl:apply-templates select="node() | @*" />
  </xsl:copy>
</xsl:template>

然后您相应地覆盖该模板。

<!-- throw away <Fruit> elements, initially - they are handled separately -->
<xsl:template match="Company/Fruit | Companies/Fruit" />

<!-- re-build <Company> and <Companies> in the correct order -->
<xsl:template match="Company | Companies">
  <xsl:copy>
    <xsl:copy-of select="@*" />
    <xsl:copy-of select="Fruit" />
    <xsl:apply-templates select="node()" />
  </xsl:copy>
</xsl:template>

然后你就完成了。

关于xml - 更改 XML 元素顺序,同时保持结构层次和属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19316865/

相关文章:

xml - 如何在经典 ASP 中使用地理编码 API v3

C# Foreach XML 节点

sql - 从oracle中的重复节点中提取特定的xml节点

xslt - 在 for-each 循环中更改 URL 查询字符串参数值,xslt

xml - XSL : Xpath Query in <xsl:apply-templates> Isn't Returning Any Results

java - 如何使用 Maven 组合并运行来自不同项目的 testng xml 文件?

android - 找不到与给定名称匹配的资源 iys 将我标记为颜色?

xml - 如何使用 XSLT 重命名属性?

css - 如何使用 XSL 在 XML 中的特定 td 中保留新行和空格

XSLT 2.0 : Tokenize does not work on period character (full stop/dot)