Java.io.Writer.close()方法實例
java.io.Writer.close() 方法關閉流,但要先刷新它。一旦流已關閉,進一步write() 或flush() 調用會導致一個IOException異常被拋出。以前關閉的流無效。
聲明
以下是java.io.Writer.close()方法的聲明
public abstract void close()
參數
-
NA
返回值
此方法冇有返回值
異常
-
IOException -- 如果發生I/ O錯誤
例子
下麵的示例演示java.io.Writer.close()方法的用法。
package com.yiibai; import java.io.*; public class WriterDemo { public static void main(String[] args) { String s = "Hello World"; // create a new writer Writer writer = new PrintWriter(System.out); try { // append a string writer.append(s); // flush the writer writer.flush(); // append a new string writer.append(" This is an example"); // flush and close the stream writer.close(); } catch (IOException ex) { ex.printStackTrace(); } } }
讓我們來編譯和運行上麵的程序,這將產生以下結果:
Hello World This is an example