Java PrintWriter flush()方法

java.io.PrintWriter.flush() 方法刷新流。

1 语法

public void flush()

2 参数

3 返回值

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */

/**
 * java.io.PrintWriter.flush()方法的例子
 */
import java.io.*;

public class Demo {
    public static void main(String[] args) {
        String s = "Hello World";

        try {
            // create a new stream at specified file
            PrintWriter pw = new PrintWriter(System.out);

            // write the string in the file
            pw.write(s);

            // flush the writer
            pw.flush();
        } catch (Exception ex) {
            ex.printStackTrace();
        }
    }
}

输出结果为:

Hello World

热门文章

优秀文章