gpt4 book ai didi

java - Apache Commons CSV 库中封装的 token 和分隔符之间的字符无效

转载 作者:IT老高 更新时间:2023-10-28 21:17:54 31 4
gpt4 key购买 nike

使用 Apache Commons CSV 解析 CSV 文件时出现以下错误图书馆。

Exception in thread "main" java.io.IOException: (line 2) invalid char between encapsulated token and delimiter

at org.apache.commons.csv.Lexer.parseEncapsulatedToken(Lexer.java:275)
at org.apache.commons.csv.Lexer.nextToken(Lexer.java:152)
at org.apache.commons.csv.CSVParser.nextRecord(CSVParser.java:450)
at org.apache.commons.csv.CSVParser.getRecords(CSVParser.java:327)
at parse.csv.file.CSVFileParser.main(CSVFileParser.java:29)

这个错误是什么意思?

最佳答案

当我们在数据中嵌入报价时遇到了这个问题。

0,"020"1,"BS:5252525  ORDER:99999"4

应用的解决方案是 CSVFormat csvFileFormat = CSVFormat.DEFAULT.withQuote(null);

@Cuga 提示帮助我们解决了问题。谢谢@Cuga

完整代码是

    public static void main(String[] args) throws IOException {
FileReader fileReader = null;
CSVFormat csvFileFormat = CSVFormat.DEFAULT.withQuote(null);
String fileName = "test.csv";

fileReader = new FileReader(fileName);
CSVParser csvFileParser = new CSVParser(fileReader, csvFileFormat);

List<CSVRecord> csvRecords = csvFileParser.getRecords();

for (CSVRecord csvRecord : csvRecords) {
System.out.println(csvRecord);
}
csvFileParser.close();
}

结果是

CSVRecord [comment=null, mapping=null, recordNumber=1, values=[0, "020"1, "BS:5252525  ORDER:99999"4]]

关于java - Apache Commons CSV 库中封装的 token 和分隔符之间的字符无效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26729799/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com