Writer字符写出流

Posted muchen-123

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Writer字符写出流相关的知识,希望对你有一定的参考价值。


//测试 字符写出流
public class Test4_Writer {
public static void main(String[] args) throws IOException {
FW();//FileWriter写出流
// BW();//TODO BufferedWriter写出流
}
//FileWriter写出流
private static void FW() throws IOException {
//1,创建对象
// Writer out = new FileWriter("D:\iotest\1.txt");//默认就是数据覆盖模式
Writer out = new FileWriter("D:\iotest\1.txt",true);//数据追加模式
// Writer out = new FileWriter( new File("D:\iotest\1.txt") );
//2,开始写出
out.write(97);
out.write(97);
out.write(97);
out.write("大家好!!!");
//3,释放资源
out.close();
}
}

以上是关于Writer字符写出流的主要内容,如果未能解决你的问题,请参考以下文章

00092_字符输出流Writer

JavaIO(04)字符流--Writer and Reader

字符流Writer对象创建子类及其方法

字符流Reader和Writer

Java IO 字符流 Writer 和 Reader

IO流05_OutputStream和Writer输出流