Java.io.Writer.flush()方法實例
java.io.Writer.flush() 方法刷新流。如果流已經儲存了從各個write()方法在一個緩衝區方法中的任何字符,立即寫入到的目的地。然後,如果該目標是另一個字符或字節流刷新。因此,flush()調用將刷新所有緩衝區鏈中寫入和OutputStreams。
聲明
以下是java.io.Writer.flush()方法聲明
public abstract void flush()
參數
-
NA
返回值
此方法冇有返回值
異常
-
IOException -- 如果發生I/ O錯誤
例子
下麵的示例演示java.io.Writer.flush()方法的用法。
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 in a new line writer.append(" This is an example"); // flush the stream again writer.close(); } catch (IOException ex) { ex.printStackTrace(); } } }
讓我們來編譯和運行上麵的程序,這將產生以下結果:
Hello World This is an example