El método close() es un método integrado de Java.io.ByteArrayInputStream que cierra el flujo de entrada y libera los recursos del sistema asociados con este flujo a Garbage Collector.
Sintaxis :
public void close()
Parámetros : La función no acepta ningún parámetro.
Valor devuelto : la función no devuelve nada.
A continuación se muestra la implementación de la función anterior:
Programa 1:
// 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(); } }
Producción:
Use of available() method : 4
Programa 2:
// 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(); } }
Producción:
Use of available() method : 5
Referencia: https://docs.oracle.com/javase/10/docs/api/java/io/ByteArrayInputStream.html#close()