多行上的一条记录,仅第一条具有RID



我是使用BeanIO 2.1的新手,再次面临问题。

我正在尝试解码一个固定长度的文件,其中有一些记录分布在几行上,其中"rid"只标记在的第一行上

示例:

:10:BLABLABLABLA
:11:/TRTP/SEPA OVERBOEKING/IBAN
HR W HERMAN
503270327C30,49NTRFSCT20111212
:12:BLABLABLABLA

正如您所看到的,记录":11:"分布在3行上。我想把这些行作为字符串列表,其中rid":11:"将被忽略。

这是mapping.xml文件:

<record name="ownerInformation" order="2" class="com.batch.records.OwnerInformation" minOccurs="1" maxOccurs="6" collection="list">
    <field name="tag" type="string" length="4" rid="true" literal=":11:" ignore="true" />
    <field name="description" type="string" length="unbounded" maxLength="65" />
</record>

因此,异常UnexpectedRecordException:

org.beanio.UnexpectedRecordException:流已结束,应为记录"ownerInformation"

再次感谢您帮助我

可以映射跨越多个记录的Bean对象。

您必须为每一行创建记录ID,例如:我用逗号来分隔字段

11,/TRTP/SEPA OVERBOEKING/IBAN
12,HR W HERMAN
13,503270327C30
13,49NTRFSCT20111212

类似这样的东西:

<group name=ownerInfo class="com.batch.records.OwnerInformation" minOccurs="1" maxOccurs="6">
  <record name="typeInfo" class="com.batch.records.Type" order="1" minOccurs="1" maxOccurs="1" >
    <field name="recordType" rid="true" literal="11" ignore="true" />
    <field name="iban" />
  </record>
  <record name="customer" class="com.batch.records.Customer" order="2" minOccurs="1" maxOccurs="1" >
    <field name="recordType" rid="true" literal="12" ignore="true" />
    <field name="name" />
  </record>
  <record name="items" class="com.batch.records.Item" collection="list" order="3" minOccurs="1" maxOccurs="unbounded" >
    <field name="recordType" rid="true" literal="13" ignore="true" />
    <field name="id" />
  </record>
</group>

这将映射到OwnerInformation,如下所示:

package com.batch.records;
/* Getters and Setter are omitted for brevity */
public class OwnerInformation {
  Type type;
  Customer customer;
  List<Item> items;
}
public class Type {
  String iban;
}
public class Customer {
  String name;
}
public class Item {
  String id;
}

一种方法是映射出您不需要的行,因此它包括您想要从数据中派生的内容。下面是一个映射,可以按原样处理您的不同记录类型。这将为您提供所要查找的正确行项目。

请注意,每行都有一个"rid",对于数据行,基本上使用regex来表示"任何不以冒号开头的内容"。在你的"while read()"代码中,你可以用来绊倒你的逻辑

if (reader.getRecordName().equals("record11"))

或者进一步进行映射并添加组。

这里有mapping.xml,可以根据需要区分您的行:

<beanio xmlns="http://www.beanio.org/2012/03" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.beanio.org/2012/03 http://www.beanio.org/2012/03/mapping.xsd">
<stream name="fabizFile" format="fixedlength">
    <record name="record10">
        <field name="recordType" rid="true" literal=":10:" />
        <field name="sometext" length="12" />
    </record>
    <record name="record11">
        <field name="recordType" rid="true" literal=":11:" />
        <field name="sometext" length="unbounded" maxLength="40" />
    </record>
    <record name="record12">
        <field name="recordType" rid="true" literal=":12:" />
        <field name="sometext" length="unbounded" maxLength="40" />
    </record>
    <record name="goodstuff" class="FabizModel">
        <field name="recordText" rid="true" regex="^(?!:).+" length="unbounded" maxLength="50" />
    </record>
</stream>
</beanio>

相关内容

  • 没有找到相关文章

最新更新