當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。