使用具有以下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
答案 0 :(得分:1)
您在上面列出的实际结果是合法的CSV格式(即使使用引号也可以解析),但我可以看到它看起来像是一个意外的输出。
以下是CSVPrinter.java
中的source code:
// TODO where did this rule come from?
if (newRecord && (c < '0' || (c > '9' && c < 'A') || (c > 'Z' && c < 'a') || (c > 'z'))) {
quote = true;
}
如果代码不是以字母数字字符开头,则此代码将引用行中的第一项。
如果您浏览课程中的code history,您会发现自存储库开始以来(2011年11月9日),此行为一直存在。
我没有注意到issue tracker上的任何相关错误,因此如果您认为应该更改默认行为,则应该打开一个问题。或者,您可以考虑使用CSVFormat.withQuoteMode()
使用curl -I --silent http://www.yoururl/linktodetect | grep -m 1 -c 404
。