标签:tput 输入 打印流 写入 pre print buffere 控制台 LEDE
*PrintStream和PrintWriter,效果相似PrintStream:
//打印流System.out
PrintStream os =System.out;
os.println("haha");
//写入文件
os= new PrintStream(new BufferedOutputStream(new FileOutputStream("vv.txt")),true);
os.println("add");
os.println(false);
os.flush();
os.close()
//重定向输出端(输出到文件)
System.setOut(os);
System.out.println("change");
//重定向回控制台
System.setOut(new PrintStream(new BufferedOutputStream(new FileOutputStream(FileDescriptor.out)),true));
//标准的输入输出端
PrintWriter:
PrintWriter pw=new PrintWriter(new BufferedOutputStream(new FileOutputStream("vv.txt")),true);
pw.println("ff");
pw.println(true);
pw.close();
java _io_打印流,PrintStream和PrintWriter
标签:tput 输入 打印流 写入 pre print buffere 控制台 LEDE
原文地址:https://blog.51cto.com/14437184/2425419