IO中flush()函数的使用代码示例

网友投稿 247 2023-02-28


IO中flush()函数的使用代码示例

The java.io.Writer.flush() method flushes the stream. If the stream has saved any characters from the various write() methods in a buffer, write them immediately to their intended destination. Then, if that destination is another character or byte stream, flush it. Thus one flush() invocation will flush all the buffers in a chain of Writers and OutputStreams.

public class Demo {

public static void main(String[] ars) thttp://hrows Exception {

http:// System.out.println("hello");

PrintWriter writer = new PrintWriter(System.out);

writer.println("writer start");

// writer.flush();

try {

Thread.sleep(3000);

}

catch (InterruptedException e) {

// TODO Auto-generated catch block

e.printStackTrace();

}

writer.println("writer close");

writer.close();

}

}

如上面代码,如果flush()被注释掉,则打印完“hello”之后3秒才会打印”writer start”,”writer close”,因为writer.close()在关闭输出流前会调用一次flush()。效果如下:

如果flush()没有被注释掉,则则打印完“hello”之后会立即打印”writer start”。

总结

以上就是本文关于IO中flush()函数的使用代码示例的全部内容,希望对大家有所帮助。感兴趣的朋友可以继续参阅本站其他相关专题,如有不足之处,欢迎留言指出。感谢朋友们对本站的支持!


版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:接口api开发文档模板(接口api开发文档模板下载)
下一篇:PrintStream和PrintWriter的区别简介
相关文章

 发表评论

暂时没有评论,来抢沙发吧~