Java.io.FileInputStream.close()方法實例
java.io.FileInputStream.close() 關閉此文件輸入流並釋放與該流關聯的所有係統資源。
聲明
以下是java.io.FileInputStream.close()方法的聲明:
public void close()
參數
-
NA
返回值
該方法不返回任何值。
異常
-
IOException -- 如果發生任何I/O錯誤。
例子
下麵的示例演示java.io.FileInputStream.close()方法的用法。
package com.yiibai; import java.io.IOException; import java.io.FileInputStream; public class FileInputStreamDemo { public static void main(String[] args) throws IOException { FileInputStream fis = null; int i=0; char c; try{ // create new file input stream fis = new FileInputStream("C://test.txt"); // read byte from file input stream i=fis.read(); // convert integer from character c = (char)i; // print character System.out.println(c); // close file input stream fis.close(); System.out.println("Close() invoked"); // tries to read byte from close file input stream i=fis.read(); c=(char)i; System.out.println(c); }catch(Exception ex){ // if an I/O error occurs System.out.println("IOException: close called before read()"); }finally{ // releases all system resources from the streams if(fis!=null) { fis.close(); } } } }
假設我們有一個文本文件c:/ test.txt,它具有以下內容。該文件將被用作輸入到我們的示例程序:
ABCDEF
讓我們來編譯和運行上麵的程序,這將產生以下結果:
A IOException: close called before read()