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()
相關用法
- Java ByteArrayInputStream available()用法及代碼示例
- Java ByteArrayInputStream markSupported()用法及代碼示例
- Java ByteArrayInputStream skip()用法及代碼示例
- Java ByteArrayInputStream reset()用法及代碼示例
- Java ByteArrayInputStream mark()用法及代碼示例
- Java ObjectInputStream close()用法及代碼示例
- Java CharArrayReader close()用法及代碼示例
- Java PushbackReader close()用法及代碼示例
- Java CharArrayWriter close()用法及代碼示例
- Java Reader close()用法及代碼示例
- Java PrintWriter close()用法及代碼示例
- Java PrintStream close()用法及代碼示例
- Java Formatter close()用法及代碼示例
- Java StringWriter close()用法及代碼示例
- Java Writer close()用法及代碼示例
注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 ByteArrayInputStream close() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。