Open In App

ByteArrayInputStream close() method in Java with Examples

Last Updated : 11 Jul, 2025
Comments
Improve
Suggest changes
Like Article
Like
Report
The close() method is a built-in method of the Java.io.ByteArrayInputStream closes the input stream and releases system resources associated with this stream to Garbage Collector. Syntax:
public void close()
Parameters: The function does not accepts any parameter. Return Value: The function returns nothing. Below is the implementation of the above function: Program 1: Java
// Java program to implement
// the above function
import java.io.*;

public class Main {
    public static void main(String[] args) throws Exception
    {

        // Array
        byte[] buffer = { 1, 2, 3, 4 };

        // Create InputStream
        ByteArrayInputStream geek
            = new ByteArrayInputStream(buffer);

        // Use the function to get the number
        // of available
        int number = geek.available();

        // Print
        System.out.println("Use of available() method : "
                           + number);

        // Closes the InputStream
        geek.close();
    }
}
Output:
Use of available() method : 4
Program 2: Java
// Java program to implement
// the above function
import java.io.*;

public class Main {
    public static void main(String[] args) throws Exception
    {

        // Array
        byte[] buffer = { 2, 3, 4, 8, 9 };

        // Create InputStream
        ByteArrayInputStream geek
            = new ByteArrayInputStream(buffer);

        // Use the function to get the number
        // of available
        int number = geek.available();

        // Print
        System.out.println("Use of available() method : "
                           + number);

        // Closes the InputStream
        geek.close();
    }
}
Output:
Use of available() method : 5
Reference: https://docs.oracle.com/javase/10/docs/api/java/io/ByteArrayInputStream.html#close()

Similar Reads