我有一个csv文件,其中一个头看起来像 Name;Lastname;"Some info\n more info"
我的分析器:
CsvMapper csvMapper = new CsvMapper();
CsvSchema csvSchema = CsvSchema.emptySchema()
.withHeader()
.withColumnSeparator(';');
MappingIterator<Map<String, String>> mappingIterator = csvMapper
.readerFor(Map.class)
.with(csvSchema)
.readValues(new InputStreamReader(
new FileInputStream("myFilePath"),
Charset.forName("windows-1250")
));
但是在解析之后,我丢失了标题中的引号,只得到 Name;Lastname;Some info\n more info
. 如何保存报价?
暂无答案!
目前还没有任何答案,快来回答吧!