Suppose I have an array of int, float, string etc. Is there any utility API (e.g. Commons, Guava) that will give me a comma separated string?
Like so,
int[] a = {1,2,3,4,5}.
String s = magicAPI.getCSV(a); // s == "1,2,3,4,5";
|
I've used OpenCSV in the past.
However, for such a trivial example you might want to just use the a |
|||||
|
|
For this simple use case, commons-lang has a
|
||||
|
|
|
After digging more, I found http://static.springsource.org/spring/docs/1.1.5/api/org/springframework/util/StringUtils.html StringUtils API in Spring that can do it. Since , I'm already using Spring, I guess I will stick with it. |
|||
|
|
|
Commons Apache CSV appears to consolidate 3 other CSV libraries, although I can't find a release post-2007. A quick look suggests OpenCSV will do what you want via a
|
|||
|
|
|
You mention Google Guava, which has the
|
|||
|
|
|
If you convert your array into a GS Collections container, you can use one of the makeString() methods. If you don't pass in separator parameter, it defaults to ", " (comma and space).
|
|||
|
|
Arrays#toStringalso inserts spaces after each comma, which you can't remove easily with a regex as it might be part of a String (in the case of aString[]). – assylias Jul 18 '12 at 16:31