Java OutputStreamWriter flush()方法

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

1 语法

public void flush()

2 参数

3 返回值

4 示例 

package com.yiidian;

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

import java.io.*;

public class Demo {
    public static void main(String[] args) {
        try {
            // create a new OutputStreamWriter
            OutputStream os = new FileOutputStream("test.txt");
            OutputStreamWriter writer = new OutputStreamWriter(os);

            // create a new FileInputStream to read what we write
            FileInputStream in = new FileInputStream("test.txt");

            // write something in the file
            writer.write(70);

            // flush the stream
            System.out.println("Flushing Stream...");
            writer.flush();
            System.out.println("Stream flushed.");

            // read what we write
            System.out.println("" + (char) in.read());

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

输出结果为:

Flushing Stream...
Stream flushed.
F

热门文章

优秀文章