大家好,又见面了,我是你们的朋友全栈君。
带有默认缓冲的字符输出流。
使用:
构造:BufferedWriter bf = new BufferedWriter(“outFilePath”);
写入:write(“thing”);
换行:newLine();
刷新缓冲区,会将内容写进目标文件:flush();
关闭该流的操作:close();
import java.io.BufferedWriter; import java.io.FileWriter; import java.io.IOException; public class BufferedWriterT { public static void main (String[] args) throws IOException { String path = "E:\\WriteTxt.txt"; FileWriter fw = new FileWriter(path); BufferedWriter bufw = new BufferedWriter(fw); bufw.write("hello world"); bufw.newLine(); bufw.write("hello world !!!"); bufw.flush(); bufw.close(); } }
学习链接:http://blog.csdn.net/liuhenghui5201/article/details/8279557
转载于:https://www.cnblogs.com/guofan/p/6802704.html
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/132645.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...