Java Utililty Methods CSV String Convert

List of utility methods to do CSV String Convert

Description

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

Method

StringcsvToValuePerLine(String csv)
csv To Value Per Line
StringBuffer list = new StringBuffer();
String[] splitString = csv.split(",");
for (int i = 0; i < splitString.length; i++) {
    if (i > 0) {
        list.append(LINE_END);
    list.append(splitString[i].trim());
return list.toString();