如何进行XSLT转换?

时间:2019-07-17 12:10:47

标签: xml xslt

我具有下面的xml文件结构,但是我需要将其转换为节点“ Type1”中“ Shipper”和“ Supplier”的结构

您能告诉我如何使用xslt进行操作吗?

      <Data>
        <Shipper>11111</Shipper>
        <Supplier>22222</Supplier>
        <Type1>
          <NumberOfConnections>2</NumberOfConnections>
          <Quantity>
            <Amount>2042</Amount>
            <Unit>AAAAA</Unit>
          </Quantity>
          <UserCategory>GGV</UserCategory>
        </Type1>
      </Data>

我希望具有以下文件中的结构:

      <Data>
        <Type1>
        <Shipper>11111</Shipper>
        <Supplier>22222</Supplier>
          <NumberOfConnections>2</NumberOfConnections>
          <Quantity>
            <Amount>2042</Amount>
            <Unit>AAAAA</Unit>
          </Quantity>
          <UserCategory>GGV</UserCategory>
        </Type1>
       </Data>

谢谢!

0 个答案:

没有答案