使用Apache Commons CSV阅读以下TSV片段时:
Name DOB SIN Address, contact information
"Patience Middleton" "18-4-87" 720463771 "varius Cras sem aliquam taciti fames hendrerit tempor"
这是我的代码:
CSVFormat format = CSVFormat.newFormat('\t').withQuote('"');
CSVParser parsed = CSVParser.parse(csvData, format);
List<CSVRecord> record = parsed.getRecords();
System.out.println(parsed.getHeaderMap().toString());
但是我总是得到一个NullPointerException
来说明parsed.getHeaderMap() == null
。
根据API(https://commons.apache.org/proper/commons-csv/apidocs/org/apache/commons/csv/CSVParser.html),该方法可能会返回按列顺序迭代的标题映射的副本。
我的代码或CSV文件中有什么问题吗?图书馆失败了吗?
答案 0 :(得分:11)
默认情况下,CSVParser
假定没有标题行并将第一行解析为常规数据。您需要明确告诉它您希望通过调用CSVFormat
上的withHeader()
将CSV文件的第一行解释为标题:
CSVParser parsed = CSVParser.parse(csvData,
CSVFormat.newFormat('\t').withQuote('"').withHeader());