Saturday, February 7, 2026
HomeLanguagesJavaProgram to convert IntStream to String in Java

Program to convert IntStream to String in Java

Given a Instream containing ASCII values, the task is to convert this Instream into a String containing the characters corresponding to the ASCII values.

Examples:

Input: IntStream = 71, 101, 101, 107, 115
Output: Geeks

Input: IntStream = 71, 101, 101, 107, 115, 70, 111, 114, 71, 101, 101, 107, 115
Output: GeeksForGeeks

Algorithm:

  1. Get the Instream to be converted.
  2. Convert the IntStream into String with the help of StringBuilder
  3. Collect the formed StringBuilder
  4. Convert the StringBuilder into String using toString() methods.
  5. Print the formed String.

Below is the implementation of the above approach:




// 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
        IntStream intStream = "Geeks".chars();
  
        // Convert IntStream to String
        String string = intStream
                            .collect(StringBuilder::new,
                                     StringBuilder::appendCodePoint,
                                     StringBuilder::append)
                            .toString();
  
        // Print the String
        System.out.println("String: " + string);
    }
}


Output:

String: Geeks
RELATED ARTICLES

Most Popular

Dominic
32491 POSTS0 COMMENTS
Milvus
126 POSTS0 COMMENTS
Nango Kala
6862 POSTS0 COMMENTS
Nicole Veronica
11987 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12075 POSTS0 COMMENTS
Shaida Kate Naidoo
6996 POSTS0 COMMENTS
Ted Musemwa
7237 POSTS0 COMMENTS
Thapelo Manthata
6947 POSTS0 COMMENTS
Umr Jansen
6933 POSTS0 COMMENTS