I want parse file with delimeter. I use BeanIO 2.1.0. I have file, which contains a string in which there is a double quote:
"TEST"/37326330|TEST2
In config I set parameter:
<stream name="csvStream" format="csv">
<parser>
<property name="delimiter" value="|"/>
<property name="unquotedQuotesAllowed" value="true"/>
</parser>
</stream>
But it not working! I get error:
org.beanio.MalformedRecordException: Malformed record at line 1: Invalid character found outside of quoted field at line 1
But why? Why this parameter not working?