My input file has multiple formats. My first line will be delimited and the remaining file will be fixed length.
How to write my mapping xml file and read it from java?
I tried writing multiple streams but that didn't work.
My mapping.xml is something like this,
<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="ebcdicFile" format="delimited">
<parser>
<property name="delimiter" value="|" />
</parser>
<record name="header"
class="sft_action_cms_apt_394.sft_action_cms_apt_394.FileSegment">
<field name="fileName" />
<field name="batchCount" />
<field name="totalRecords" />
<field name="maxBatchSize" />
<field name="pickUpTime" />
<field name="errorFlag" />
</record>
</stream>
<stream name="file" format="fixedlength">
<record name="dec"
class="sft_action_cms_apt_394.sft_action_cms_apt_394.pojo">
<field name="tag" length="4" />
<field name="description" length="unbounded" />
</record>
</stream>
</beanio>
I don't think your use case is covered by BeanIO. I would try to do something like this:
java.io.BufferedReader
mark()
your current position on the input of theBufferedReader
.reset()
theBufferedReader
, this will make it go "back" to the same point as where you have calledmark()
.You may need to repeat the above process or tweak it depending on the structure of your data. You don't show if your "header" is a single record or if it can occur multiple times in between "dec" records.
If you only have a single "header" record and then multiple "dec" records you could simplify the process above with something like:
Read the first line of your data directly with the
BufferedReader.readLine()
method into aString
. Pass this string to the BeanIO reader to parse it and give you the "header" object back.Now you can create another
BeanReader
to read the rest of your input data using the "file" stream.