我有一个包含以下内容的csv
EANHotelID|SequenceNumber|Name|Address1|Address2|City|StateProvince|PostalCode|Country|Latitude|Longitude|AirportCode|PropertyCategory|PropertyCurrency|StarRating|Confidence|SupplierType|Location|ChainCodeID|RegionID|HighRate|LowRate|CheckInTime|CheckOutTime
541454|99999999|Hotel Maan Residency|"B" Wing, Gopal Palace, opp. ocean park|Naherunagar-Satellite Road|Ahmedabad||380 015|IN|23.02266|72.53842|AMD|1|INR|3.0||ESR|Near Kankaria Lake|||0|0|10:00 AM|10:00 AM
现在我尝试使用以下代码
将此csv中的每一行作为对象读取 CsvMapper mapper = new CsvMapper();
mapper.findAndRegisterModules();
File csvFile = new File("D:\\ActivePropertyList.txt.bak2");
CsvSchema schema = CsvSchema.emptySchema().withHeader().withColumnSeparator('|').withNullValue("");
MappingIterator<Map<String,String>> it = mapper.readerFor(Map.class).with(schema)
.readValues(csvFile);
while (it.hasNextValue()) {
Map<String,String> value = it.nextValue();
}
但由于csv中存在"B"
,它失败了。我收到以下错误:
引起:com.fasterxml.jackson.core.JsonParseException:意外 字符('W'(代码87)):预期的分隔符('“'(代码34))或 [来源: (com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader);线:2, 专栏:43]
如何正确解析csv中的双引号?我尝试使用schema.withEscapeChar()
schema.withQuoteChar()
,但我无法让它发挥作用。
答案 0 :(得分:0)
在模式上使用withoutQuoteChar()
处理csv内容中的双引号,即
CsvSchema.emptySchema().withHeader().withColumnSeparator('|').withNullValue("").withoutQuoteChar();