1. 程式人生 > >java IO流之二 使用IO流讀取儲存檔案

java IO流之二 使用IO流讀取儲存檔案

http://blog.csdn.net/a107494639/article/details/7586440

一、使用字元流,讀取和儲存純文字檔案。

       儲存檔案,也就是像一個檔案裡寫內容,既然是寫,那就需要使用輸出流。而且我們寫的是純文字檔案,所以這裡使用字元流來操作,java api提供給我們FileWriter這麼一個類,我們來試試:(讀取檔案同理使用FileReader類)

  1. package org.example.io;  
  2. import java.io.File;  
  3. import java.io.FileNotFoundException;  
  4. import java.io.FileReader;  
  5. import java.io.FileWriter;  
  6. import java.io.IOException;  
  7. publicclass TestFileWriter {  
  8.     publicstaticvoid main(String[] args) throws Exception {  
  9.         writeToFile();  
  10.         readFromFile();  
  11.     }  
  12.     /** 
  13.      * DOC 從檔案裡讀取資料. 
  14.      *  
  15.      * @throws FileNotFoundException 
  16.      * @throws IOException
     
  17.      */
  18.     privatestaticvoid readFromFile() throws FileNotFoundException, IOException {  
  19.         File file = new File("E:\\helloworld.txt");// 指定要讀取的檔案
  20.         FileReader reader = new FileReader(file);// 獲取該檔案的輸入流
  21.         char[] bb = newchar[1024];// 用來儲存每次讀取到的字元
  22.         String str = "";// 用來將每次讀取到的字元拼接,當然使用StringBuffer類更好
  23.         int n;// 每次讀取到的字元長度
  24.         while ((n = reader.read(bb)) != -1) {  
  25.             str += new String(bb, 0, n);  
  26.         }  
  27.         reader.close();// 關閉輸入流,釋放連線
  28.         System.out.println(str);  
  29.     }  
  30.     /** 
  31.      * DOC 往檔案裡寫入資料. 
  32.      *  
  33.      * @throws IOException 
  34.      */
  35.     privatestaticvoid writeToFile() throws IOException {  
  36.         String writerContent = "hello world,你好世界";// 要寫入的文字
  37.         File file = new File("E:\\helloworld.txt");// 要寫入的文字檔案
  38.         if (!file.exists()) {// 如果檔案不存在,則建立該檔案
  39.             file.createNewFile();  
  40.         }  
  41.         FileWriter writer = new FileWriter(file);// 獲取該檔案的輸出流
  42.         writer.write(writerContent);// 寫內容
  43.         writer.flush();// 清空緩衝區,立即將輸出流裡的內容寫到檔案裡
  44.         writer.close();// 關閉輸出流,施放資源
  45.     }  
  46. }  

測試結果:

hello world,你好世界

二、使用位元組流,讀取和儲存圖片

    首先使用輸入流讀取圖片資訊,然後通過輸出流寫入圖片資訊:

  1. package org.example.io;  
  2. import java.io.File;  
  3. import java.io.FileInputStream;  
  4. import java.io.FileOutputStream;  
  5. publicclass TestIOStream {  
  6.     /** 
  7.      *  
  8.      * DOC 將F盤下的test.jpg檔案,讀取後,再存到E盤下面. 
  9.      *  
  10.      * @param args 
  11.      * @throws Exception 
  12.      */
  13.     publicstaticvoid main(String[] args) throws Exception {  
  14.         FileInputStream in = new FileInputStream(new File("F:\\test.jpg"));// 指定要讀取的圖片
  15.         File file = new File("E:\\test.jpg");  
  16.         if (!file.exists()) {// 如果檔案不存在,則建立該檔案
  17.             file.createNewFile();  
  18.         }  
  19.         FileOutputStream out = new FileOutputStream(new File("E:\\test.jpg"));// 指定要寫入的圖片
  20.         int n = 0;// 每次讀取的位元組長度
  21.         byte[] bb = newbyte[1024];// 儲存每次讀取的內容
  22.         while ((n = in.read(bb)) != -1) {  
  23.             out.write(bb, 0, n);// 將讀取的內容,寫入到輸出流當中
  24.         }  
  25.         out.close();// 關閉輸入輸出流
  26.         in.close();  
  27.     }  
  28. }  
用FileReader 讀取檔案時,要是檔案中含有中文字元會出現亂碼問題,File file = new File("D:\\hello.txt");
BufferedReader reader = new BufferedReader(new InputStreamReader(new FileInputStream(file),"GBK"));這樣可以解決出現的中文亂碼