*PrintStream和PrintWriter,效果相似
创新互联是专业的南部网站建设公司,南部接单;提供做网站、成都网站设计,网页设计,网站设计,建网站,PHP网站建设等专业做网站服务;采用PHP框架,可快速的进行南部网站开发网页制作和功能扩展;专业做搜索引擎喜爱的网站,专业的做网站团队,希望更多企业前来合作!
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();