Java中将String转换为IntStream的程序
给定一个字符串,任务是将此字符串转换为包含字符的 ASCII 值作为元素的 IntStream。
例子:
Input: String = Geeks
Output: 71, 101, 101, 107, 115
Input: String = GeeksForGeeks
Output: 71, 101, 101, 107, 115, 70, 111, 114, 71, 101, 101, 107, 115
算法:
- 获取要转换的字符串。
- 使用 chars() 方法将其转换为 IntStream。
- 打印形成的 IntStream。
下面是上述方法的实现:
// Java program to convert
// String to IntStream
import java.util.stream.IntStream;
class GFG {
public static void main(String[] args)
{
// Get the String to be converted
String string = "Geeks";
// Print the String
System.out.println("String: " + string);
// Convert String to IntStream using chars() method
IntStream intStream = string.chars();
// Print the elements of the IntStream
intStream.forEach(System.out::println);
}
}
输出:
String: Geeks
71
101
101
107
115