List of utility methods to do String Array to CSV Convert
String | concatByCSV(String[] strs) concat By CSV StringBuffer value = new StringBuffer(); for (int i = 0; i < strs.length; i++) { String filterValue = new String(strs[i]); if (filterValue.indexOf(",") != -1) { if (filterValue.indexOf("\"") != -1) { filterValue = filterValue.replaceAll("\"", "\"\""); StringBuffer temp = new StringBuffer(); ... |