将字符串列表转换为 Java 中的逗号分隔字符串
首先,假设以下为我们的字符串列表 −
List<String> myList = new ArrayList<>(Arrays.asList("One", "Two", "Three", "Four"));
现在,使用 String.join() 将其转换为逗号分隔字符串
String str = String.join(", ", myList);
示例
以下是将 Java 中的字符串列表转换为逗号分隔字符串的程序 −
import java.util.*; public class Demo { public static void main(String args[]) { List<String> myList = new ArrayList<>(Arrays.asList("One", "Two", "Three", "Four")); System.out.println("List = " + myList); // comma separated String str = String.join(", ", myList); System.out.println("String (Comma Separated) = " + str); } }
输出
List = [One, Two, Three, Four] Comma separated String: One, Two, Three, Four
广告