我试图用FlatFileItemReader解析CSV文件.此CSV包含一些引用的换行符,如下所示.
email,name abc@z.com,"NEW NAME ABC"
但是这个解析失败了,必填字段为2但实际为1.@H_502_5@
我在FlatFileReader配置中缺少什么?@H_502_5@
<property name="lineMapper"> <bean class="org.springframework.batch.item.file.mapping.DefaultLineMapper"> <!-- The lineTokenizer divides individual lines up into units of work --> <property name="lineTokenizer"> <bean class="org.springframework.batch.item.file.transform.DelimitedLineTokenizer"> <!-- Names of the CSV columns --> <property name="names" value="email,name" /> </bean> </property> <!-- The fieldSetMapper maps a line in the file to a Product object --> <property name="fieldSetMapper"> <bean class="com.abc.testme.batchjobs.util.CustomerFieldSetMapper" /> </property> </bean> </property>
解决方法
开箱即用的FlatFileItemReader使用
SimpleRecordSeparatorPolicy作为您的用例
你需要设置DefaultRecordSeparatorPolicy@H_502_5@
引用它的javadoc:@H_502_5@
A RecordSeparatorPolicy that treats all lines as record endings,as
long as they do not have unterminated quotes,and do not end in a
continuation marker.@H_502_5@
示例xml配置@H_502_5@
<bean id="reader" class="org.springframework.batch.item.file.FlatFileItemReader"> ... <property name="recordSeparatorPolicy"> <bean class="org.springframework.batch.item.file.separator.DefaultRecordSeparatorPolicy" /> </property> ... </bean>