📌  相关文章
📜  Java中的 ByteArrayInputStream close() 方法及示例

📅  最后修改于: 2022-05-13 01:55:42.398000             🧑  作者: Mango

Java中的 ByteArrayInputStream close() 方法及示例

close()方法是Java.io.ByteArrayInputStream的内置方法,用于关闭输入流并将与该流关联的系统资源释放到垃圾收集器。

语法

public void close()

参数:该函数不接受任何参数。

返回值:该函数不返回任何内容。

下面是上述函数的实现:

方案一:

// 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();
    }
}
输出:
Use of available() method : 4

方案二:

// 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();
    }
}
输出:
Use of available() method : 5

参考: https: Java/io/ByteArrayInputStream.html#close()