java – 读取CSV中的换行符,它在Spring批处理的FlatfileItemReader中的文件中引用

前端之家收集整理的这篇文章主要介绍了java – 读取CSV中的换行符,它在Spring批处理的FlatfileItemReader中的文件中引用前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图用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作为您的用例

>评论部分超过2行或更多行@H_502_5@

你需要设置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>
原文链接:https://www.f2er.com/java/130007.html

猜你在找的Java相关文章