Given a list
List l = new ArrayList(); l.add(\"one\"); l.add(\"two\"); l.add(\"three\");
I have a method
With Java 8, you can use streams with joiners.
Collection strings; ... String commaDelimited = strings.stream().collect(Collectors.joining(",")); // use strings.parallelStream() instead, if you think // there are gains to be had by doing fork/join