JAVA的文字輸出檔案
JAVA的輸出 水管1:輸出到檔案,印出自己的文字儲存成一個檔案 FileOutputStream fos= new FileOutputStream("C:\\JavaHW\\Data.txt"); BufferedOutputStream bos= new BufferedOutputStream(fos); PrintStream ps=new PrintStream(bos); ps. print ("把這段文字儲存到新建的檔案中"); =================================================== FileWriter fw = new FileWriter("c:\\javawork\\hello2.txt"); BufferedWriter bw = new BufferedWriter(fw); PrintWriter pw = new PrintWriter(bw); pw.println("多麼美好的一天挖 !"); pw.write("多麼美好的一天挖 !"); //也可使用 =================================================== ...