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


Java Java.io.Writer.flush()用法及代碼示例



描述

這個java.io.Writer.flush()方法刷新流。如果流已將來自各種 write() 方法的任何字符保存在緩衝區中,則立即將它們寫入其預期目的地。然後,如果該目標是另一個字符或字節流,則刷新它。因此,一次 flush() 調用將刷新 Writers 和 OutputStreams 鏈中的所有緩衝區。

聲明

以下是聲明java.io.Writer.flush()方法。

public abstract void flush()

參數

NA

返回值

此方法不返回值。

異常

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

示例

下麵的例子展示了使用java.io.Writer.flush()方法。

package com.tutorialspoint;

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("\nThis is an example");

         // flush the stream again
         writer.close();

      } catch (IOException ex) {
         ex.printStackTrace();
      }
   }
}

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

Hello World
This is an example

相關用法


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