当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java ByteArrayInputStream close()用法及代码示例


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

用法

public void close()

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


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

下面是上述函数的实现:

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

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

参考: https://docs.oracle.com/javase/10/docs/api/java/io/ByteArrayInputStream.html#close()



相关用法


注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 ByteArrayInputStream close() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。