JavaScript has Array.join()
Array.join()
js>[\"Bill\",\"Bob\",\"Steve\"].join(\" and \") Bill and Bob and Steve
Does Java have anything
No, there's no such convenience method in the standard Java API.
Not surprisingly, Apache Commons provides such a thing in their StringUtils class in case you don't want to write it yourself.