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"