Android Utililty Methods Collection to CSV Convert

List of utility methods to do Collection to CSV Convert

Description

The list of methods to do Collection to CSV Convert are organized into topic(s).

Method

Stringcsv(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++;
...