package com.mycompany.data.transfers.app;
import java.io.FileReader;
import org.supercsv.cellprocessor.ConvertNullTo;
import org.supercsv.cellprocessor.ParseBigDecimal;
import org.supercsv.cellprocessor.ParseDate;
import org.supercsv.cellprocessor.ParseInt;
import org.supercsv.cellprocessor.ift.CellProcessor;
import org.supercsv.io.CsvBeanReader;
import org.supercsv.prefs.CsvPreference;
import com.mycompany.data.transfers.models.Invoice;
public class Test {
/**
* @param args
* @throws Exception
*/
public static void main(String[] args) throws Exception {
char quote = '"';
int delimeter = 124;
String newLine = "\n";
CellProcessor[] cp = new CellProcessor[] {
new StrReplace(" ", "xx"),
null,
new ParseDate("yyyyMMdd"),
new ParseBigDecimal(),
new ConvertNullTo("0", new ParseBigDecimal()),
new ParseDate("yyyyMMdd"),
null,
new ParseDate("yyyyMMdd"),
null,
null,
null,
null,
null,
new ParseInt()
};
Invoice bean = new Invoice();
CsvBeanReader inFile = new CsvBeanReader(new FileReader("c:\\temp\\my_test_file.txt"), new CsvPreference(quote, delimeter, newLine));
while ((bean = inFile.read(bean.getClass(), new String[] {"item", "loc", "schedDate", "fracQty", "recQty",
"expDate", "poNum", "dateShip", "masterLoadId", "loadId",
"confirmationNumber", "sourceWarehouse", "purchasingGroup",
"poDistFlag" }, cp)) != null) {
System.out.println(bean);
}
}
}
Invoice [item=, loc=NEW, schedDate=Wed Nov 02 00:00:00 CDT 2011, fracQty=5, recQty=4]
Invoice [item=0006268410, loc=SHR, schedDate=Thu Nov 03 00:00:00 CDT 2011, fracQty=12, recQty=5]
Exception in thread "main" null
Parser error context: Line: 3 Column: 4 Raw line:
[0000939515, NEW, 20111102, 50, , 20111102, , 20111102, 0000000000, 0000000000, , , BBA, 1]
offending processor: org.supercsv.cellprocessor.ParseBigDecimal@17a8913
at org.supercsv.cellprocessor.ParseBigDecimal.execute(Unknown Source)
at org.supercsv.cellprocessor.ConvertNullTo.execute(Unknown Source)
at org.supercsv.util.Util.processStringList(Unknown Source)
at org.supercsv.io.CsvBeanReader.read(Unknown Source)
at com.mycompany.data.transfers.app.Test.main(Test.java:48)
Caused by: java.lang.NumberFormatException
at java.math.BigDecimal.<init>(BigDecimal.java:534)
at java.math.BigDecimal.<init>(BigDecimal.java:728)
... 5 more
答案 0 :(得分:2)
此问题是CsvBeanReader
不会将空列转换为null
,而是转换为""
(空字符串)。因此,在编写 CSV文件时,您应该只需要ConvertNullTo
处理器。
所以而不是
new ConvertNullTo("0", new ParseBigDecimal())
你应该使用
new Token("", "0", new ParseBigDecimal()) // replace "" with "0"
假设您想要一个空白列的值为零的BigDecimal - 如果您希望它为null
而是使用
new Optional(new ParseBigDecimal())
我会承认网站和javadoc需要更加明确,这是我正在为即将发布的Super CSV发布的。
修改:[{3}}
的更新最近发布的Super CSV 2.0.0-beta-1包含许多错误修复和新功能(包括Maven支持和用于映射嵌套属性和数组/集合的新Dozer扩展)。它还改变了空值和空字符串的处理。
新版本将""
(空列)显示为null
,这意味着您现在可以使用原始代码:
new ConvertNullTo("0", new ParseBigDecimal())
因此,Optional()
单元格处理器现在与null
而不是""
匹配,这意味着您在编写时也可以将其用作单元格处理器({{{ 1}}值现在将写为null
)。