📜  Java中将String转换为IntStream的程序

📅  最后修改于: 2022-05-13 01:55:48.805000             🧑  作者: Mango

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

算法:

  1. 获取要转换的字符串。
  2. 使用 chars() 方法将其转换为 IntStream。
  3. 打印形成的 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