将xml从第n个元素拆分为第n个元素

时间:2013-08-19 05:07:16

标签: java xml xslt xml-parsing xslt-1.0

以下是我的XML结构:

<cars>  
  <car>  
    <ford color="black" >eco sport</ford>    
    <maruti color="red" >zen</maruti>  
    <hyundai color="blue" >accent</hyundai>  
  </car>  
  <car>  
    <ford color="green" >figo</ford >    
    <maruti color="red" >swift</maruti>  
    <hyundai color="white" >santro</hyundai>  
  </car> 
  <car>  
    <ford color="red" >aaa</ford >    
    <maruti color="red" >bbb</maruti>  
    <hyundai color="red" >ccc</hyundai>  
  <car>  
  </car>
    <ford color="white" >ddd</ford >    
    <maruti color="white" >eee</maruti>  
    <hyundai color="white" >fff</hyundai>  
  </car>
</cars>

从上面的XML结构中,我需要在java中有一个解析器,它将拆分xml,只返回一个只有2或3个元素的xml(如1-2或2-3或2-4),因为我会动态指定元素行。因此,如果我在方法splitXML(2,3)中传递params,我返回的新xml应该是:

<cars>  
    <car>  
      <ford color="green" >figo</ford >    
      <maruti color="red" >swift</maruti>  
      <hyundai color="white" >santro</hyundai>  
    </car> 
    <car>  
      <ford color="red" >aaa</ford >    
      <maruti color="red" >bbb</maruti>  
      <hyundai color="red" >ccc</hyundai>  
    </car>  
</cars>  

有些人可以帮帮我吗?

3 个答案:

答案 0 :(得分:2)

在XSLT 2.0中,您可以使用subsequence()。 (我知道这个问题标记为1.0,但也许这将有助于未来的访问者。)

XML输入

<cars>  
    <car>  
        <ford color="black" >eco sport</ford>    
        <maruti color="red" >zen</maruti>  
        <hyundai color="blue" >accent</hyundai>  
    </car>  
    <car>  
        <ford color="green" >figo</ford >    
        <maruti color="red" >swift</maruti>  
        <hyundai color="white" >santro</hyundai>  
    </car> 
    <car>  
        <ford color="red" >aaa</ford >    
        <maruti color="red" >bbb</maruti>  
        <hyundai color="red" >ccc</hyundai>  
    </car>  
    <car>
        <ford color="white">ddd</ford>
        <maruti color="white">eee</maruti>
        <hyundai color="white">fff</hyundai>
    </car>
</cars>

XSLT 2.0

<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:output indent="yes"/>
    <xsl:strip-space elements="*"/>

    <xsl:param name="start" select="2"/>
    <xsl:param name="end" select="3"/>

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

    <xsl:template match="cars">
        <xsl:copy>
            <xsl:apply-templates select="@*|subsequence(car,$start,($end - $start)+1)"/>
        </xsl:copy>
    </xsl:template>

</xsl:stylesheet>

XML输出

<cars>
   <car>
      <ford color="green">figo</ford>
      <maruti color="red">swift</maruti>
      <hyundai color="white">santro</hyundai>
   </car>
   <car>
      <ford color="red">aaa</ford>
      <maruti color="red">bbb</maruti>
      <hyundai color="red">ccc</hyundai>
   </car>
</cars>

答案 1 :(得分:1)

您可以使用基于Identity transform的xslt,您可以在其中传递具有所需范围的参数(根据您使用的xslt处理器,可以完成的方式)。 XSLT可能如下所示

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fo="http://www.w3.org/1999/XSL/Format">
    <xsl:output method="xml" />

    <!-- Take a start and end position to be output as a parameters from outside-->
    <xsl:param name="startPosition"  />
    <xsl:param name="endPosition"  />

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

    <!-- When you are processing car element... -->
    <xsl:template match="car">
        <!-- ... take a look at its position. Copy it only if its position is in the desired range -->
        <xsl:if test="not((position() &lt; $startPosition) or (position() &gt; $endPosition))">
            <xsl:copy>
                <xsl:apply-templates select="node() | @*" />
            </xsl:copy>
        </xsl:if>
    </xsl:template>
</xsl:stylesheet>

使用值startPosition = 2和endPosition = 3,您将获得以下输出

<?xml version="1.0" encoding="UTF-8"?>
<cars>
    <car>
        <ford color="green">figo</ford>
        <maruti color="red">swift</maruti>
        <hyundai color="white">santro</hyundai>
    </car>
    <car>
        <ford color="red">aaa</ford>
        <maruti color="red">bbb</maruti>
        <hyundai color="red">ccc</hyundai>
    </car>
</cars>

这只是一个概念。实际上你应该检查参数的一些约束,如果它们是数字,如果endPosition不低于startPosition等。

答案 2 :(得分:0)

您需要一个XML解析器。网上有大量资源。这是关于读取和操作XML的simple tutorial