我使用opencsv 2.3,它似乎没有像我期望的那样处理转义字符。我需要能够处理CSV文件中不使用引号字符的转义分隔符。
示例测试代码:
CSVReader reader = new CSVReader(new FileReader("D:/Temp/test.csv"), ',', '"', '\');
String[] nextLine;
while ((nextLine = reader.readNext()) != null) {
for (String string : nextLine) {
System.out.println("Field [" + string + "].");
}
}
和CSV文件:
first field,second,field
和输出:
Field [first field].
Field [second].
Field [field].
注意,如果我将csv更改为
first field,"second,field"
然后我得到我想要的输出:
Field [first field].
Field [second,field].
但是,在我的例子中,我没有修改源CSV的选项。
不幸的是,看起来opencsv不支持转义分隔符,除非它们在引号中。当遇到转义字符时,调用以下方法(取自opencsv的源代码)。
protected boolean isNextCharacterEscapable(String nextLine, boolean inQuotes, int i) {
return inQuotes // we are in quotes, therefore there can be escaped quotes in here.
&& nextLine.length() > (i + 1) // there is indeed another character to check.
&& (nextLine.charAt(i + 1) == quotechar || nextLine.charAt(i + 1) == this.escape);
}
可以看到,只有当转义字符后面的字符是引号字符或另一个转义字符时,该方法才返回true。您可以将库补丁到此,但以其当前形式,它不会让您执行您想要执行的操作。