List of utility methods to do Collection to CSV Convert
String | csv(Collection> col) Creates a comma separated value from the collection elements using the toString method StringBuilder sb = new StringBuilder(); int i = 0; for (Object c : col) { if (i > 0) { sb.append(","); sb.append(c.toString()); i++; ... |