Here you can find the source of stringToCommaText(List
public static String stringToCommaText(List<String> strings)
//package com.java2s; //License from project: Open Source License import java.util.List; public class Main { public static String stringToCommaText(List<String> strings) { String text = ""; if (strings.size() > 0) { for (String s : strings) { if (text.length() > 0) { text = text + ", "; }/*from w w w.ja v a 2 s . c o m*/ text = text + "cpgf::" + s; } } return text; } }