Here you can find the source of listToString(List
public static String listToString(List<String> stringList)
//package com.java2s; //License from project: Apache License import java.util.*; public class Main { public static String listToString(List<String> stringList) { String text = ""; for (String k : stringList) text += " " + k; return text; }/* w ww. j av a2 s . c om*/ }