*PrintStream和PrintWriter,效果相似
創(chuàng)新互聯(lián)是專業(yè)的南部網站建設公司,南部接單;提供做網站、成都網站設計,網頁設計,網站設計,建網站,PHP網站建設等專業(yè)做網站服務;采用PHP框架,可快速的進行南部網站開發(fā)網頁制作和功能擴展;專業(yè)做搜索引擎喜愛的網站,專業(yè)的做網站團隊,希望更多企業(yè)前來合作!
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();