import org.apache.commons.lang3.StringUtils;
String str = StringUtils.join(myList);
or
String str = StringUtils.join(myList, ", ") // 2nd param is the separator.
Go to list of users who liked
More than 3 years have passed since last update.
import org.apache.commons.lang3.StringUtils;
String str = StringUtils.join(myList);
or
String str = StringUtils.join(myList, ", ") // 2nd param is the separator.
Register as a new user and use Qiita more conveniently
Go to list of users who liked