将 String 转换为 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

更新时间:2019 年 9 月 25 日

481 人次观看

启动您的职业生涯

通过完成课程获得认证

开始
广告