JAVA基础 IO流三 功能流?
2020-12-17 19:35
标签:tput fileinput write 读写 stream new red 分隔符 使用 Buffered 缓冲流:可以加快节点流的读写效率 JAVA基础 IO流三 功能流? 标签:tput fileinput write 读写 stream new red 分隔符 使用 原文地址:https://www.cnblogs.com/w2758472746/p/14104034.html
字节缓冲流:
BufferedInputStream 字节输入缓冲流
BufferedOutputStream 字节输出缓冲流
没有新增方法,可以发生多态
使用: InputStream is = new BufferedInputStream(new FileInputStream(“D:/haha.txt”));
OutputStream os = new BufferedOutputStream(new FileOutputStream(“D:/DDD.txt”,true));
字符缓冲流
字符输入缓冲流 BufferedReader
新增方法: String readLine() 读一行文字。
字符输出缓冲流 BufferedWriter
新增方法: void newLine() 写一个行分隔符。
注意:不能发生多态