Possible Duplicate:
Java: convert List<String> to a join()d string
Having this:
List<String> elementNames = Arrays.asList("h1", "h2", "h3", "h4", "h5", "h6");
What is an elegant way to get String with a custom delimiter, like so:
"h1,h2,h3,h4,h5,h6"
If you don’t mind using the StringUtils library provided by apache, you could do:
https://commons.apache.org/proper/commons-lang/javadocs/api-2.6/org/apache/commons/lang/StringUtils.html