位置:首頁 > Java技術 > Java.io包 > Java.io.FilterWriter.close()方法實例

Java.io.FilterWriter.close()方法實例

java.io.FilterWriter.close() 方法調用關閉前該字符串要先刷新它。一旦流被關閉,再調用write() 或 flush()將拋出IOException異常。

聲明

以下是java.io.FilterWriter.close()方法的聲明:

public void close()

參數

  • NA

返回值

該方法不返回任何值。

異常

  • IOException -- 如果發生I/ O錯誤。

例子

下麵的示例演示java.io.FilterWriter.close()方法的用法。

package com.yiibai;

import java.io.FilterWriter;
import java.io.StringWriter;
import java.io.Writer;

public class FilterWriterDemo {
   public static void main(String[] args) throws Exception {
      
      FilterWriter fw = null;
      Writer w = null;
      String s=null;
      
      try{
         // create new reader
         w = new StringWriter(6);
          
         // filter writer
         fw = new FilterWriter(w) {
         };
         
         // write to filter writer
         fw.write(65);
         
         // get the string
         s = w.toString();
         
         // print
         System.out.println("String: "+s);
         
      }catch(Exception e){
         
         // if any I/O error occurs
         e.printStackTrace();
      }finally{
         
         // releases system resources associated with this stream
         if(w!=null)
            w.close();
         if(fw!=null)
         {
            fw.close();
            System.out.println("close() invoked");
            System.out.print("flushes out and then closes the stream");
         }
      }
   }
}

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

String: A
close() invoked
flushes out and then closes the stream