作者热门文章
- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我该如何解决这个问题:
<bean id=" productLineTokenizer" class="org.springframework.batch.item.file.transform.DelimitedLineTokenizer">
<property name="delimiter" value="\t"/>
原因:
java.lang.IllegalArgumentException:
String [\t] with length 2 cannot be converted to char type
最佳答案
你需要使用一个常量
<property name="delimiter">
<util:constant static-field="org.springframework.batch.item.file.transform.DelimitedLineTokenizer.DELIMITER_TAB"/>
</property>
关于java - DelimitedLineTokenizer 制表符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11920052/
我该如何解决这个问题: 原因: java.lang.IllegalArgumentException: String [\t] with length 2 cannot be co
我有两种文件类型要插入数据库中。 格式为:aa;bb;cc 和 aa;bb;cc;dd;ee 这是我的 FlatFileItemReader :
我是一名优秀的程序员,十分优秀!