I'm brand new on using BeanIO 2.1 and I'm again facing an issue.
I'm trying to decode a fixed-length file, which has some records spread on several lines, where the 'rid' is only marked on the first of these lines
Example:
:10:BLABLABLABLA
:11:/TRTP/SEPA OVERBOEKING/IBAN
HR W HERMAN
503270327C30,49NTRFSCT20111212
:12:BLABLABLABLA
As you can see, the record ':11:' is spread over 3 lines. I'd like to grab these lines as a List of String, where the rid ':11:' would just be ignored.
This is the mapping.xml file:
<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>
As a result, the exception UnexpectedRecordException:
org.beanio.UnexpectedRecordException: End of stream reached, expected record 'ownerInformation'
Thanks again for helping me
One method would be to map out the lines you don't need and thus it includes what you want to derive from the data. Below is a mapping that can process your different records types as-is. This gives you the correct line items for which you're looking.
Note that you have an 'rid' for each line, and for your data lines you basically use a regex to say "anything that doesn't start with a colon". In your 'while read()' code you can trip your logic with:
or go further with the mapping and add the groups.
Here's the mapping.xml to distinguish your lines as you need: