当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java String转IntStream用法及代码示例


给定一个字符串,任务是将这个字符串转换为 IntStream,其中包含字符的 ASCII 值作为元素。

例子:

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

相关用法


注:本文由纯净天空筛选整理自RishabhPrabhu大神的英文原创作品 Program to convert String to IntStream in Java。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。