程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> JAVA綜合教程 >> 輸入輸出1,7915輸入輸出差1v

輸入輸出1,7915輸入輸出差1v

編輯:JAVA綜合教程

輸入輸出1,7915輸入輸出差1v


 1         // 編寫TextRw.java的Java應用程序,程序完成的功能是:首先向TextRw.txt中寫入自己的學號和姓名,讀取TextRw.txt中信息並將其顯示在屏幕上。
 2         File file = new File("d:/TextRw.txt");
 3         try {
 4             if (!file.exists()) {
 5                 file.createNewFile();
 6                 System.out.println("文件創建成功");
 7             }
 8             // 寫入
 9             FileWriter fw = new FileWriter(file);
10             fw.write("學號:10001,姓名:唐楓");
11             fw.close();
12             // 讀取
13             FileReader fr = new FileReader(file);
14             char[] ch = new char[1024];
15             int i = fr.read(ch);
16             String str = new String(ch, 0, i);
17             fr.close();
18             System.out.println("文件內容:" + str);
19             
20         } catch (Exception e) {
21             e.printStackTrace();
22         }

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved