1. 程式人生 > >java IO流檔案的讀寫具體例項

java IO流檔案的讀寫具體例項

IO流的分類
1、根據流的資料物件來分:
高階流:所有的記憶體中的流都是高階流,比如:InputStreamReader  
低端流:所有的外界裝置中的流都是低端流,比如InputStream,OutputStream 
如何區分:所有的流物件的字尾中包含Reader或者Writer的都是高階流,反之,則基本上為低端流,不過也有例外,比如PrintStream就是高階流

2、根據資料的流向來分:
輸出流:是用來寫資料的,是由程式(記憶體)--->外界裝置
輸入流:是用來讀資料的,是由外界裝置--->程式(記憶體)
如何區分:一般來說輸入流帶有Input,輸出流帶有Output 

3、根據流資料的格式來分:
位元組流:處理聲音或者圖片等二進位制的資料的流,比如InputStream 
字元流:處理文字資料(如txt檔案)的流,比如InputStreamReader  
如何區分:可用高低端流來區分,所有的低端流都是位元組流,所有的高階流都是字元流

4、根據流資料的包裝過程來分:
原始流:在例項化流的物件的過程中,不需要傳入另外一個流作為自己構造方法的引數的流,稱之為原始流。
包裝流:在例項化流的物件的過程中,需要傳入另外一個流作為自己構造方法發引數的流,稱之為包裝流。
如何區分:所以的低端流都是原始流,所以的高階流都是包裝流

IO流物件的繼承關係(如下圖):

下面來看一些具體的程式碼例子:

按位元組來讀取檔案

複製程式碼
public class ReadFromFile {
    /**
     * 以位元組為單位讀取檔案,常用於讀二進位制檔案,如圖片、聲音、影像等檔案。
     */
    public static void readFileByBytes(String fileName) {
        File file = new File(fileName);
        InputStream in = null;
        try {
            System.out.println("以位元組為單位讀取檔案內容,一次讀一個位元組:");
            
// 一次讀一個位元組 in = new FileInputStream(file); int tempbyte; while ((tempbyte = in.read()) != -1) { System.out.print(tempbyte); } in.close(); } catch (IOException e) { e.printStackTrace(); return; } try { System.out.println("以位元組為單位讀取檔案內容,一次讀多個位元組:"); // 一次讀多個位元組 byte[] tempbytes = new byte[100]; int byteread = 0; in = new FileInputStream(fileName); ReadFromFile.showAvailableBytes(in); // 讀入多個位元組到位元組陣列中,byteread為一次讀入的位元組數 while ((byteread = in.read(tempbytes)) != -1) { System.out.print(tempbytes, 0, byteread); } } catch (Exception e1) { e1.printStackTrace(); } finally { if (in != null) { try { in.close(); } catch (IOException e1) { } } } }
複製程式碼

按字元來讀取檔案

複製程式碼
 /**
     * 以字元為單位讀取檔案,常用於讀文字,數字等型別的檔案
     */
    public static void readFileByChars(String fileName) {
        File file = new File(fileName);
        Reader reader = null;
        try {
            System.out.println("以字元為單位讀取檔案內容,一次讀一個字元:");
            // 一次讀一個字元
            reader = new InputStreamReader(new FileInputStream(file));
            int tempchar;
            while ((tempchar = reader.read()) != -1) {
                // 對於windows下,\r\n這兩個字元在一起時,表示一個換行。
                // 但如果這兩個字元分開顯示時,會換兩次行。
                // 因此,遮蔽掉\r,或者遮蔽\n。否則,將會多出很多空行。
                if (((char) tempchar) != '\r') {
                    System.out.print((char) tempchar);
                }
            }
            reader.close();
        } catch (Exception e) {
            e.printStackTrace();
        }
        try {
            System.out.println("以字元為單位讀取檔案內容,一次讀多個字元:");
            // 一次讀多個字元
            char[] tempchars = new char[30];
            int charread = 0;
            //由於要以字元來讀取,所以需要套上字元流
            reader = new InputStreamReader(new FileInputStream(fileName));
            // 讀入多個字元到字元陣列中,charread為一次讀取字元數
            while ((charread = reader.read(tempchars)) != -1) {
                // 同樣遮蔽掉\r不顯示
                if ((charread == tempchars.length)
                        && (tempchars[tempchars.length - 1] != '\r')) {
                    System.out.print(tempchars);
                } else {
                    for (int i = 0; i < charread; i++) {
                        if (tempchars[i] == '\r') {
                            continue;
                        } else {
                            System.out.print(tempchars[i]);
                        }
                    }
                }
            }

        } catch (Exception e1) {
            e1.printStackTrace();
        } finally {
            if (reader != null) {
                try {
                    reader.close();
                } catch (IOException e1) {
                }
            }
        }
    }
複製程式碼

按行來讀取檔案

複製程式碼
 /**
     * 以行為單位讀取檔案,常用於讀面向行的格式化檔案
     */
    public static void readFileByLines(String fileName) {
        File file = new File(fileName);
        BufferedReader reader = null;
        try {
            System.out.println("以行為單位讀取檔案內容,一次讀一整行:");
            reader = new BufferedReader(new FileReader(file));
            String tempString = null;
            int line = 1;
            // 一次讀入一行,直到讀入null為檔案結束
            while ((tempString = reader.readLine()) != null) {
                // 顯示行號
                System.out.println("line " + line + ": " + tempString);
                line++;
            }
            reader.close();
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            if (reader != null) {
                try {
                    reader.close();
                } catch (IOException e1) {
                }
            }
        }
    }
複製程式碼

將一個檔案的內容寫入另一個檔案(按行來寫)

複製程式碼
public class FileTest {
public static void main(String[] args)   {
 File  file=new File("c:\\test.txt");
 BufferedReader read=null;
 BufferedWriter writer=null;
 try {
   writer=new BufferedWriter(new  FileWriter("c:\\zwm.txt"));
 } catch (IOException e1) {
  e1.printStackTrace();
 }
 try {
   read=new BufferedReader(new  FileReader(file));
   String tempString = null;
   while((tempString=read.readLine())!=null){
    writer.append(tempString);
    writer.newLine();//換行
    writer.flush();//需要及時清掉流的緩衝區,萬一檔案過大就有可能無法寫入了
   }
   read.close();
   writer.close();
   System.out.println("檔案寫入完成...");
 } catch (IOException e) {
  e.printStackTrace();
 }

}
}