java convert list of string to String... code example
Example 1: java list of strings to string
String string = list.stream().map(Object::toString).collect(Collectors.joining(""));
Example 2: convert list of strings to string
string Something = string.Join(",", MyList);