java_檔案輸入與輸出
阿新 • • 發佈:2019-02-04
1. 從檔案中讀取資訊
//從檔案中讀取資料資訊並列印輸出 import java.io.IOException; import java.nio.file.Paths; import java.util.Scanner; //三個包不能少 public class Test { public static void main(String args[]) throws IOException //這個throws不能少 { Scanner in = new Scanner(Paths.get("d:\\1.txt")); String data = in.nextLine(); String data2 = in.nextLine(); System.out.println(data + '\n' + data2); } }
2. 寫入資料資訊到檔案中
//向檔案中寫入資料資訊 import java.io.IOException; import java.io.PrintWriter; import java.util.Scanner; //三個包不能少 public class Test { public static void main(String args[]) throws IOException //這個throws不能少 { PrintWriter out = new PrintWriter("d:\\2.txt"); out.println("hahahaha"); //寫入資料資訊到指定檔案 out.flush(); //重新整理檔案 } }