使用 XSLT 按节点数将大型 XML 拆分为较小的块 [英] Split large XML to smaller chunks by node count using XSLT

查看:27
本文介绍了使用 XSLT 按节点数将大型 XML 拆分为较小的块的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个需求,我们需要获取一个大的 XML 文件,我需要对小块进行转换

I have a requirement where we are getting a large XML file and I need to transform on small chunks

下面是包含 4 条记录的 XML 示例,我必须转换 XML,以便我能够将它们分成 2 条.

below is the XML sample with 4 records, I have to transform the XML so I am able to group them in chunks of 2.

<!-- Original XML-->
<EmpDetails>
    <Records>
        <EmpID>1</EmpID>
        <Age>20</Age>
    </Records>
    <Records>
        <EmpID>2</EmpID>
        <Age>21</Age>
    </Records>
    <Records>
        <EmpID>3</EmpID>
        <Age>22</Age>
    </Records>
    <Records>
        <EmpID>4</EmpID>
        <Age>23</Age>
    </Records>
</EmpDetails>


<!-- Expected XML-->
<EmpDetails>
    <Split>
        <Records>
            <EmpID>1</EmpID>
            <Age>20</Age>
        </Records>
        <Records>
            <EmpID>2</EmpID>
            <Age>21</Age>
        </Records>
    </Split>
    <Split>
        <Records>
            <EmpID>3</EmpID>
            <Age>22</Age>
        </Records>
        <Records>
            <EmpID>4</EmpID>
            <Age>23</Age>
        </Records>
    </Split>
</EmpDetails>

我尝试了以下几件事,但没有成功.

I tried few things including below without success.

<?xml version="1.0" encoding="UTF-8" ?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <xsl:template match="/">
    <EmpDetails>
      <xsl:for-each select="/EmpDetails/Records">
        <Split>
          <Records>
            <EmpID>
              <xsl:value-of select="EmpID"/>
            </EmpID>
            <Age>
              <xsl:value-of select="Age"/>
            </Age>
          </Records>
        </Split>
      </xsl:for-each>
    </EmpDetails>
  </xsl:template>
</xsl:stylesheet>

谢谢牙谈

推荐答案

将它们分成 2 块.

group them in chunks of 2.

这可以简单地通过:

XSLT 1.0

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

<xsl:template match="/EmpDetails">
    <xsl:copy>
        <xsl:for-each select="Records[position() mod 2 = 1]">
            <Split>
                <xsl:copy-of select=". | following-sibling::Records[1]"/>
            </Split>
        </xsl:for-each>
    </xsl:copy>
</xsl:template>

</xsl:stylesheet>


添加:

要将记录分成 200 组,您可以执行以下操作:


Added:

To divide the records into groups of 200, you can do:

    ...
        <xsl:for-each select="Records[position() mod 200 = 1]">
            <Split>
                <xsl:copy-of select=". | following-sibling::Records[position() &lt; 200]"/>
            </Split>
        </xsl:for-each>
    ...

XSLT 2.0 中,您可以:

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

<xsl:template match="/EmpDetails">
    <xsl:copy>
        <xsl:for-each-group select="Records" group-adjacent="(position() - 1) idiv 200">
            <Split>
                <xsl:copy-of select="current-group()"/>
            </Split>
        </xsl:for-each-group>
    </xsl:copy>
</xsl:template>

</xsl:stylesheet>

这篇关于使用 XSLT 按节点数将大型 XML 拆分为较小的块的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆