Here you can find the source of listToString(List list)
public static String listToString(List list)
//package com.java2s; //License from project: Open Source License import java.util.*; public class Main { public static String listToString(List list) { String ret = "{"; for (int i = 0; i < list.size(); i++) { if (i > 0) ret += ", "; ret += list.get(i).toString(); }/*from w w w .jav a 2 s .c om*/ ret += "}"; return ret; } }