當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Java.io.InputStreamReader.close()用法及代碼示例



描述

這個java.io.InputStreamReader.close()方法關閉輸入流讀取器,並且在關閉的流上調用 read()、ready()、mark()、reset() 或 skip() 方法將拋出 IOException。

聲明

以下是聲明java.io.InputStreamReader.close()方法 -

public void close()

參數

NA

返回值

該方法不返回任何值。

異常

IOException− 如果發生 I/O 錯誤。

示例

下麵的例子展示了 java.io.InputStreamReader.close() 方法的用法。

package com.tutorialspoint;

import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStreamReader;

public class InputStreamReaderDemo {
   public static void main(String[] args) throws IOException {
      FileInputStream fis = null;
      InputStreamReader isr = null;
      int i;
      char c;
      
      try {
         // new input stream reader is created 
         fis = new FileInputStream("C:/test.txt");
         isr = new InputStreamReader(fis);
         
         // input stream reader is closed
         isr.close();
         System.out.print("close() invoked");
         
         // read() called after closed method
         i = isr.read();
         c = (char)i;
         System.out.println(c);
      
      } catch (Exception e) {
         // print error
         System.out.print("The stream is already closed");
      } finally {
         // closes the stream and releases resources associated
         if(fis!=null)
            fis.close();
         if(isr!=null)
            isr.close();
      }   
   }
}

假設我們有一個文本文件c:/test.txt,其內容如下。該文件將用作我們示例程序的輸入 -

ABCDE

讓我們編譯並運行上麵的程序,這將產生以下結果 -

close() invokedThe stream is already closed

相關用法


注:本文由純淨天空篩選整理自 Java.io.InputStreamReader.close() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。