使用具有以下maven依赖项的Apache CSV时。我得到了意想不到的结果。
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-csv</artifactId>
<version>1.2</version>
</dependency>
简单的代码对我来说并不像预期的那样有效。有人能说出这里出了什么问题吗?
System.out.println(CSVFormat.DEFAULT.format("-10","10"));
实际输出:"-10",10
预期输出:-10,10
System.out.println(CSVFormat.DEFAULT.format("10","-10"));
实际输出:10,-10
预期输出:10,-10
System.out.println(CSVFormat.DEFAULT.format(".10","-10"));
实际输出:".10",-10
预期输出:.10,-10
System.out.println(CSVFormat.DEFAULT.format("+10","-10"));
实际输出:"+10",-10
预期输出:+10,-10
上面列出的实际结果是合法的CSV格式(即使有引号也可以解析),但我可以看到它看起来像是一个意外的输出。
以下是CSVPrinter.java
:中的源代码
// TODO where did this rule come from?
if (newRecord && (c < '0' || (c > '9' && c < 'A') || (c > 'Z' && c < 'a') || (c > 'z'))) {
quote = true;
}
如果行中的第一项不是以字母数字字符开头,则此代码将引用该项。
如果浏览类的代码历史记录,您会发现自存储库开始(2011年11月9日)以来,这种行为一直存在。
我没有注意到问题跟踪器上有任何相关的错误,所以如果你认为应该更改默认行为,你应该打开一个问题。或者,您可以考虑使用CSVFormat.withQuoteMode()
应用QuoteMode。