使用CSVFormat使用解析CSV时,IllegalArgumentException



我正在使用Apache Commons CSV解析CSV文件使用以下代码:

CSVFormat csvFileFormat = CSVFormat.EXCEL.withHeader().withQuoteMode(QuoteMode.MINIMAL);

在某些CSV文件上,我会收到以下错误:

java.lang.IllegalArgumentException: 
Mapping for Phone number not found, 
expected one of [Address, City, State, Zip, Phone Number, Product, Comments/Description, Final Status, Date Closed]

我检查了文件,其中包含一个"电话号码"列,存在列和所有值。

我在做什么错?

根据您的异常消息,电话号码很小,但该字段包含在电话号码表格。当它在上述消息中找到列时,该错误将不会到达。

相关内容

  • 没有找到相关文章

最新更新