将字符串转换为 Java 中的字符列表
假设以下字符串为我们的字符串 -
String str = "Website!";
现在,将上述字符串转换为一个字符列表 -
List<Character>list = str.chars().mapToObj(n -> (char)n).collect(Collectors.toList());
示例
以下是在 Java 中将字符串转换为字符列表的程序 -
import java.util.*;
import java.util.stream.Collectors;
public class Demo {
public static void main(String[] args){
String str = "Website!";
System.out.println("String = "+str);
List<Character>list = str.chars().mapToObj(n -> (char)n).collect(Collectors.toList());
System.out.println("List of Characters = "+list);
}
}输出
String = Website! List of Characters = [W, e, b, s, i, t, e, !]
广告
数据结构
网络
RDBMS
操作系统
Java
iOS
HTML
CSS
Android
Python
C 编程
C++
C#
MongoDB
MySQL
Javascript
PHP