Programa para convertir String a IntStream en Java

Dado un String, la tarea es convertir este String en un IntStream que contenga los valores ASCII de los caracteres como elementos.

Ejemplos:

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

Algoritmo:

  1. Obtenga la string que se va a convertir.
  2. Conviértalo en IntStream usando el método chars().
  3. Imprima el IntStream formado.

A continuación se muestra la implementación del enfoque anterior:

// 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);
    }
}

Producción:

String: Geeks
71
101
101
107
115

Publicación traducida automáticamente

Artículo escrito por RishabhPrabhu y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *