如何通过apache CSV API跳过CSV文件中的空行?

时间:2017-09-27 01:05:26

标签: java csv

我的csv文件有tab的分隔符,包含一些空行。如何在阅读文件时跳过空行?以下代码遇到空行时会收到异常。

CSVParser csvFileParser;
CSVFormat csvFileFormat = CSVFormat.newFormat('\t');
csvFileFormat.withSkipHeaderRecord();
csvFileFormat.getIgnoreEmptyLines();

1 个答案:

答案 0 :(得分:0)

我认为您只需要在解析CSV之前添加.withIgnoreEmptyLines(true)

FYI