Java Writer flush()方法

java.io.Writer.flush() 刷新流。如果流已经储存了从各个write()方法在一个缓冲区方法中的任何字符,立即写入到的目的地。然后,如果该目标是另一个字符或字节流刷新。因此,flush()调用将刷新所有缓冲区链中写入和OutputStreams。

1 语法

public abstract void flush()

2 参数

3 返回值

返回true。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * java.io.Writer.flush()方法的例子
 */
import java.io.*;

public class Demo {
    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

热门文章

优秀文章