Possible Duplicate:
Best way to convert an ArrayList to a string
I have an ArrayList in my class.
I need to make a String composed of all those Strings (I know, why not use a String in the first place - I'm dealing with amazing legacy code there and my hands are tied).
Is there a quickier way than something like :
String total;
for (String s : list)
{
total += s;
}
Thank you for your help !