天天看點

Java的檔案讀寫操作file(記憶體)----輸入流---->【程式】----輸出流---->file(記憶體)java中多種方式讀檔案java 寫檔案的三種方法比較java中的getParentFileJava RandomAccessFile的使用高效的RandomAccessFile高效的RandomAccessFile【續】

file(記憶體)----輸入流---->【程式】----輸出流---->file(記憶體)

當我們讀寫文本檔案的時候,采用Reader是非常友善的,比如FileReader,InputStreamReader和BufferedReader。其中最重要的類是InputStreamReader, 它是位元組轉換為字元的橋梁。你可以在構造器重指定編碼的方式,如果不指定的話将采用底層作業系統的預設編碼方式,例如GBK等。使用FileReader讀取檔案:

FileReader fr = new FileReader("ming.txt");    
  
int ch = 0;    
  
while((ch = fr.read())!=-1 )   
  
{     
System.out.print((char)ch);     
}   
           
Java的檔案讀寫操作file(記憶體)----輸入流---->【程式】----輸出流---->file(記憶體)java中多種方式讀檔案java 寫檔案的三種方法比較java中的getParentFileJava RandomAccessFile的使用高效的RandomAccessFile高效的RandomAccessFile【續】
} 

           

其中read()方法傳回的是讀取得下個字元。當然你也可以使用read(char[] ch,int off,int length)這和處理二進制檔案的時候類似。

事實上在FileReader中的方法都是從InputStreamReader中繼承過來的。read()方法是比較好費時間的,如果為了提高效率我們可以使用BufferedReader對Reader進行包裝,這樣可以提高讀取得速度,我們可以一行一行的讀取文本,使用readLine()方法。

BufferedReader br = new BufferedReader(new InputStreamReader(new FileInputStream("ming.txt")));

String data = null;

while((data = br.readLine())!=null)

{

System.out.println(data);

}

了解了FileReader操作使用FileWriter寫檔案就簡單了,這裡不贅述。

Eg.我的綜合執行個體

testFile:

import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStreamReader;

public class testFile {
	/**
	 * @param args
	 */
	public static void main(String[] args) {
		// TODO Auto-generated method stub
		// file(記憶體)----輸入流---->【程式】----輸出流---->file(記憶體)
		File file = new File("d:/temp", "addfile.txt");
		try {
			file.createNewFile(); // 建立檔案
		} catch (IOException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}

		// 向檔案寫入内容(輸出流)
		String str = "親愛的小南瓜!";
		byte bt[] = new byte[1024];
		bt = str.getBytes();
		try {
			FileOutputStream in = new FileOutputStream(file);
			try {
				in.write(bt, 0, bt.length);
				in.close();
				// boolean success=true;
				// System.out.println("寫入檔案成功");
			} catch (IOException e) {
				// TODO Auto-generated catch block
				e.printStackTrace();
			}
		} catch (FileNotFoundException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}
		try {
			// 讀取檔案内容 (輸入流)
			FileInputStream out = new FileInputStream(file);
			InputStreamReader isr = new InputStreamReader(out);
			int ch = 0;
			while ((ch = isr.read()) != -1) {
				System.out.print((char) ch);
			}
		} catch (Exception e) {
			// TODO: handle exception
		}
	}
}
           

java中多種方式讀檔案

//------------------參考資料---------------------------------
//
//1、按位元組讀取檔案内容
//2、按字元讀取檔案内容
//3、按行讀取檔案内容
//4、随機讀取檔案内容

import java.io.BufferedReader;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.RandomAccessFile;
import java.io.Reader;

public class ReadFromFile {
	/**
	 * 以位元組為機關讀取檔案,常用于讀二進制檔案,如圖檔、聲音、影像等檔案。
	 * 
	 * @param fileName
	 *            檔案的名
	 */
	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.write(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.write(tempbytes, 0, byteread);
			}
		} catch (Exception e1) {
			e1.printStackTrace();
		} finally {
			if (in != null) {
				try {
					in.close();
				} catch (IOException e1) {
				}
			}
		}
	}

	/**
	 * 以字元為機關讀取檔案,常用于讀文本,數字等類型的檔案
	 * 
	 * @param fileName
	 *            檔案名
	 */
	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下,rn這兩個字元在一起時,表示一個換行。
				// 但如果這兩個字元分開顯示時,會換兩次行。
				// 是以,屏蔽掉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) {
				}
			}
		}
	}

	/**
	 * 以行為機關讀取檔案,常用于讀面向行的格式化檔案
	 * 
	 * @param fileName
	 *            檔案名
	 */
	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) {
				}
			}
		}
	}

	/**
	 * 随機讀取檔案内容
	 * 
	 * @param fileName
	 *            檔案名
	 */
	public static void readFileByRandomAccess(String fileName) {
		RandomAccessFile randomFile = null;
		try {
			System.out.println("随機讀取一段檔案内容:");
			// 打開一個随機通路檔案流,按隻讀方式
			randomFile = new RandomAccessFile(fileName, "r");
			// 檔案長度,位元組數
			long fileLength = randomFile.length();
			// 讀檔案的起始位置
			int beginIndex = (fileLength > 4) ? 4 : 0;
			// 将讀檔案的開始位置移到beginIndex位置。
			randomFile.seek(beginIndex);
			byte[] bytes = new byte[10];
			int byteread = 0;
			// 一次讀10個位元組,如果檔案内容不足10個位元組,則讀剩下的位元組。
			// 将一次讀取的位元組數賦給byteread
			while ((byteread = randomFile.read(bytes)) != -1) {
				System.out.write(bytes, 0, byteread);
			}
		} catch (IOException e) {
			e.printStackTrace();
		} finally {
			if (randomFile != null) {
				try {
					randomFile.close();
				} catch (IOException e1) {
				}
			}
		}
	}

	/**
	 * 顯示輸入流中還剩的位元組數
	 * 
	 * @param in
	 */
	private static void showAvailableBytes(InputStream in) {
		try {
			System.out.println("目前位元組輸入流中的位元組數為:" + in.available());
		} catch (IOException e) {
			e.printStackTrace();
		}
	}

	public static void main(String[] args) {
		String fileName = "C:/temp/newTemp.txt";
		ReadFromFile.readFileByBytes(fileName);
		ReadFromFile.readFileByChars(fileName);
		ReadFromFile.readFileByLines(fileName);
		ReadFromFile.readFileByRandomAccess(fileName);
	}
}
           
//二、将内容追加到檔案尾部
import java.io.FileWriter;
import java.io.IOException;
import java.io.RandomAccessFile;

/**
 * 将内容追加到檔案尾部
 */
public class AppendToFile {
	/**
	 * A方法追加檔案:使用RandomAccessFile
	 * 
	 * @param fileName
	 *            檔案名
	 * @param content
	 *            追加的内容
	 */
	public static void appendMethodA(String fileName,

	String content) {
		try {
			// 打開一個随機通路檔案流,按讀寫方式
			RandomAccessFile randomFile = new RandomAccessFile(fileName, "rw");
			// 檔案長度,位元組數
			long fileLength = randomFile.length();
			// 将寫檔案指針移到檔案尾。
			randomFile.seek(fileLength);
			randomFile.writeBytes(content);
			randomFile.close();
		} catch (IOException e) {
			e.printStackTrace();
		}
	}

	/**
	 * B方法追加檔案:使用FileWriter
	 * 
	 * @param fileName
	 * @param content
	 */
	public static void appendMethodB(String fileName, String content) {
		try {
			// 打開一個寫檔案器,構造函數中的第二個參數true表示以追加形式寫檔案
			FileWriter writer = new FileWriter(fileName, true);
			writer.write(content);
			writer.close();
		} catch (IOException e) {
			e.printStackTrace();
		}
	}

	public static void main(String[] args) {
		String fileName = "C:/temp/newTemp.txt";
		String content = "new append!";
		// 按方法A追加檔案
		AppendToFile.appendMethodA(fileName, content);
		AppendToFile.appendMethodA(fileName, "append end. n");
		// 顯示檔案内容
		ReadFromFile.readFileByLines(fileName);
		// 按方法B追加檔案
		AppendToFile.appendMethodB(fileName, content);
		AppendToFile.appendMethodB(fileName, "append end. n");
		// 顯示檔案内容
		ReadFromFile.readFileByLines(fileName);
	}
}
           
Java的檔案讀寫操作file(記憶體)----輸入流----&gt;【程式】----輸出流----&gt;file(記憶體)java中多種方式讀檔案java 寫檔案的三種方法比較java中的getParentFileJava RandomAccessFile的使用高效的RandomAccessFile高效的RandomAccessFile【續】
//------------------參考資料---------------------------------
//
//1、按位元組讀取檔案内容
//2、按字元讀取檔案内容
//3、按行讀取檔案内容
//4、随機讀取檔案内容

import java.io.BufferedReader;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.RandomAccessFile;
import java.io.Reader;

public class ReadFromFile {
	/**
	 * 以位元組為機關讀取檔案,常用于讀二進制檔案,如圖檔、聲音、影像等檔案。
	 * 
	 * @param fileName
	 *            檔案的名
	 */
	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.write(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.write(tempbytes, 0, byteread);
			}
		} catch (Exception e1) {
			e1.printStackTrace();
		} finally {
			if (in != null) {
				try {
					in.close();
				} catch (IOException e1) {
				}
			}
		}
	}

	/**
	 * 以字元為機關讀取檔案,常用于讀文本,數字等類型的檔案
	 * 
	 * @param fileName
	 *            檔案名
	 */
	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下,rn這兩個字元在一起時,表示一個換行。
				// 但如果這兩個字元分開顯示時,會換兩次行。
				// 是以,屏蔽掉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) {
				}
			}
		}
	}

	/**
	 * 以行為機關讀取檔案,常用于讀面向行的格式化檔案
	 * 
	 * @param fileName
	 *            檔案名
	 */
	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) {
				}
			}
		}
	}

	/**
	 * 随機讀取檔案内容
	 * 
	 * @param fileName
	 *            檔案名
	 */
	public static void readFileByRandomAccess(String fileName) {
		RandomAccessFile randomFile = null;
		try {
			System.out.println("随機讀取一段檔案内容:");
			// 打開一個随機通路檔案流,按隻讀方式
			randomFile = new RandomAccessFile(fileName, "r");
			// 檔案長度,位元組數
			long fileLength = randomFile.length();
			// 讀檔案的起始位置
			int beginIndex = (fileLength > 4) ? 4 : 0;
			// 将讀檔案的開始位置移到beginIndex位置。
			randomFile.seek(beginIndex);
			byte[] bytes = new byte[10];
			int byteread = 0;
			// 一次讀10個位元組,如果檔案内容不足10個位元組,則讀剩下的位元組。
			// 将一次讀取的位元組數賦給byteread
			while ((byteread = randomFile.read(bytes)) != -1) {
				System.out.write(bytes, 0, byteread);
			}
		} catch (IOException e) {
			e.printStackTrace();
		} finally {
			if (randomFile != null) {
				try {
					randomFile.close();
				} catch (IOException e1) {
				}
			}
		}
	}

	/**
	 * 顯示輸入流中還剩的位元組數
	 * 
	 * @param in
	 */
	private static void showAvailableBytes(InputStream in) {
		try {
			System.out.println("目前位元組輸入流中的位元組數為:" + in.available());
		} catch (IOException e) {
			e.printStackTrace();
		}
	}

	public static void main(String[] args) {
		String fileName = "C:/temp/newTemp.txt";
		ReadFromFile.readFileByBytes(fileName);
		ReadFromFile.readFileByChars(fileName);
		ReadFromFile.readFileByLines(fileName);
		ReadFromFile.readFileByRandomAccess(fileName);
	}
}
           
Java的檔案讀寫操作file(記憶體)----輸入流----&gt;【程式】----輸出流----&gt;file(記憶體)java中多種方式讀檔案java 寫檔案的三種方法比較java中的getParentFileJava RandomAccessFile的使用高效的RandomAccessFile高效的RandomAccessFile【續】
//二、将内容追加到檔案尾部
import java.io.FileWriter;
import java.io.IOException;
import java.io.RandomAccessFile;

/**
 * 将内容追加到檔案尾部
 */
public class AppendToFile {
	/**
	 * A方法追加檔案:使用RandomAccessFile
	 * 
	 * @param fileName
	 *            檔案名
	 * @param content
	 *            追加的内容
	 */
	public static void appendMethodA(String fileName,

	String content) {
		try {
			// 打開一個随機通路檔案流,按讀寫方式
			RandomAccessFile randomFile = new RandomAccessFile(fileName, "rw");
			// 檔案長度,位元組數
			long fileLength = randomFile.length();
			// 将寫檔案指針移到檔案尾。
			randomFile.seek(fileLength);
			randomFile.writeBytes(content);
			randomFile.close();
		} catch (IOException e) {
			e.printStackTrace();
		}
	}

	/**
	 * B方法追加檔案:使用FileWriter
	 * 
	 * @param fileName
	 * @param content
	 */
	public static void appendMethodB(String fileName, String content) {
		try {
			// 打開一個寫檔案器,構造函數中的第二個參數true表示以追加形式寫檔案
			FileWriter writer = new FileWriter(fileName, true);
			writer.write(content);
			writer.close();
		} catch (IOException e) {
			e.printStackTrace();
		}
	}

	public static void main(String[] args) {
		String fileName = "C:/temp/newTemp.txt";
		String content = "new append!";
		// 按方法A追加檔案
		AppendToFile.appendMethodA(fileName, content);
		AppendToFile.appendMethodA(fileName, "append end. n");
		// 顯示檔案内容
		ReadFromFile.readFileByLines(fileName);
		// 按方法B追加檔案
		AppendToFile.appendMethodB(fileName, content);
		AppendToFile.appendMethodB(fileName, "append end. n");
		// 顯示檔案内容
		ReadFromFile.readFileByLines(fileName);
	}
}
           

1、判斷檔案是否存在,不存在建立檔案

File file=new File(path+filename); 
    if(!file.exists()) 
    { 
        try { 
            file.createNewFile(); 
        } catch (IOException e) { 
            // TODO Auto-generated catch block 
            e.printStackTrace(); 
        } 
    }  
           
File file=new File(path+filename); 
    if(!file.exists()) 
    { 
        try { 
            file.createNewFile(); 
        } catch (IOException e) { 
            // TODO Auto-generated catch block 
            e.printStackTrace(); 
        } 
    }  
           

2、判斷檔案夾是否存在,不存在建立檔案夾

File file =new File(path+filename); 
    //如果檔案夾不存在則建立 
    if  (!file .exists())   
    {   
        file .mkdir(); 
    }   
           

java 寫檔案的三種方法比較

import java.io.File;   

import java.io.FileOutputStream;   

import java.io.*;   

public class FileTest {   

    public FileTest() {   

    }   

    public static void main(String[] args) {   

        FileOutputStream out = null;   

        FileOutputStream outSTr = null;   

        BufferedOutputStream Buff=null;   

        FileWriter fw = null;   

        int count=1000;//寫檔案行數   

        try {   

            out = new FileOutputStream(new File(“C:/add.txt”));   

            long begin = System.currentTimeMillis();   

            for (int i = 0; i < count; i++) {   

                out.write(“測試java 檔案操作\r\n”.getBytes());   

            }   

            out.close();   

            long end = System.currentTimeMillis();   

            System.out.println(“FileOutputStream執行耗時:” + (end - begin) + ” 豪秒”);   

            outSTr = new FileOutputStream(new File(“C:/add0.txt”));   

             Buff=new BufferedOutputStream(outSTr);   

            long begin0 = System.currentTimeMillis();   

            for (int i = 0; i < count; i++) {   

                Buff.write(“測試java 檔案操作\r\n”.getBytes());   

            }   

            Buff.flush();   

            Buff.close();   

            long end0 = System.currentTimeMillis();   

            System.out.println(“BufferedOutputStream執行耗時:” + (end0 - begin0) + ” 豪秒”);   

            fw = new FileWriter(“C:/add2.txt”);   

            long begin3 = System.currentTimeMillis();   

            for (int i = 0; i < count; i++) {   

                fw.write(“測試java 檔案操作\r\n”);   

            }   

                        fw.close();   

            long end3 = System.currentTimeMillis();   

            System.out.println(“FileWriter執行耗時:” + (end3 - begin3) + ” 豪秒”);   

        } catch (Exception e) {   

            e.printStackTrace();   

        }   

        finally {   

            try {   

                fw.close();   

                Buff.close();   

                outSTr.close();   

                out.close();   

            } catch (Exception e) {   

                e.printStackTrace();   

            }   

        }   

    }   

}
           

java中的getParentFile

String name = "AAAA.txt";

String lujing = "1"+"/"+"2";//定義路徑

File a = new File(lujing,name);

a.getParentFile().mkdirs();    //這裡如果不加getParentFile(),建立的檔案夾為"1/2/AAAA.txt/"

那麼,a的意義就是“1/2/AAAA.txt”。

這裡a是File,但是File這個類在Java裡表示的不隻是檔案,雖然File在英語裡是檔案的意思。Java裡,File至少可以表示檔案或檔案夾(大概還有可以表示系統裝置什麼的,這裡不考慮,隻考慮檔案和檔案夾)。

也就是說,在“1/2/AAAA.txt”真正出現在磁盤結構裡之前,它既可以表示這個檔案,也可以表示這個路徑的檔案夾。那麼,如果沒有getParentFile(),直接執行a.mkdirs(),就是說,建立“1/2/AAAA.txt”代表的檔案夾,也就是“1/2/AAAA.txt/”,在此之後,執行a.createNewFile(),試圖建立a檔案,然而以a為名的檔案夾已經存在了,是以createNewFile()實際是執行失敗的。你可以用System.out.println(a.createNewFile())這樣來檢查是不是真正建立檔案成功。

是以,這裡,你想要建立的是“1/2/AAAA.txt”這個檔案。在建立AAAA.txt之前,必須要1/2這個目錄存在。是以,要得到1/2,就要用a.getParentFile(),然後要建立它,也就是a.getParentFile().mkdirs()。在這之後,a作為檔案所需要的檔案夾大概會存在了(有特殊情況會無法建立的,這裡不考慮),就執行a.createNewFile()建立a檔案。

Java RandomAccessFile的使用

Java的RandomAccessFile提供對檔案的讀寫功能,與普通的輸入輸出流不一樣的是RamdomAccessFile可以任意的通路檔案的任何地方。這就是“Random”的意義所在。

RandomAccessFile的對象包含一個記錄指針,用于辨別目前流的讀寫位置,這個位置可以向前移動,也可以向後移動。RandomAccessFile包含兩個方法來操作檔案記錄指針。

long getFilePoint():記錄檔案指針的目前位置。

void seek(long pos):将檔案記錄指針定位到pos位置。

RandomAccessFile包含InputStream的三個read方法,也包含OutputStream的三個write方法。同時RandomAccessFile還包含一系列的readXxx和writeXxx方法完成輸入輸出。

RandomAccessFile的構造方法如下

Java的檔案讀寫操作file(記憶體)----輸入流----&gt;【程式】----輸出流----&gt;file(記憶體)java中多種方式讀檔案java 寫檔案的三種方法比較java中的getParentFileJava RandomAccessFile的使用高效的RandomAccessFile高效的RandomAccessFile【續】

mode的值有四個

"r":以隻讀文方式打開指定檔案。如果你寫的話會有IOException。

"rw":以讀寫方式打開指定檔案,不存在就建立新檔案。

"rws":不介紹了。

"rwd":也不介紹。

/**
 * 往檔案中依次寫入3名員工的資訊,
 * 每位員工有姓名和員工兩個字段 然後按照
 * 第二名,第一名,第三名的先後順序讀取員工資訊
 */
import java.io.File;
import java.io.RandomAccessFile;

public class RandomAccessFileTest {
	public static void main(String[] args) throws Exception {
		Employee e1 = new Employee(23, "張三");
		Employee e2 = new Employee(24, "lisi");
		Employee e3 = new Employee(25, "王五");
		File file = new File("employee.txt");
		if (!file.exists()) {
			file.createNewFile();
		}
		// 一個中文占兩個位元組 一個英文字母占一個位元組
		// 整形 占的位元組數目 跟cpu位長有關 32位的占4個位元組
		RandomAccessFile randomAccessFile = new RandomAccessFile(file, "rw");
		randomAccessFile.writeChars(e1.getName());
		randomAccessFile.writeInt(e1.getAge());
		randomAccessFile.writeChars(e2.getName());
		randomAccessFile.writeInt(e2.getAge());
		randomAccessFile.writeChars(e3.getName());
		randomAccessFile.writeInt(e3.getAge());
		randomAccessFile.close();

		RandomAccessFile raf2 = new RandomAccessFile(file, "r");
		raf2.skipBytes(Employee.LEN * 2 + 4);
		String strName2 = "";
		for (int i = 0; i < Employee.LEN; i++) {
			strName2 = strName2 + raf2.readChar();
		}
		int age2 = raf2.readInt();
		System.out.println("strName2 = " + strName2.trim());
		System.out.println("age2 = " + age2);

		raf2.seek(0);
		String strName1 = "";
		for (int i = 0; i < Employee.LEN; i++) {
			strName1 = strName1 + raf2.readChar();
		}
		int age1 = raf2.readInt();
		System.out.println("strName1 = " + strName1.trim());
		System.out.println("age1 = " + age1);

		raf2.skipBytes(Employee.LEN * 2 + 4);
		String strName3 = "";
		for (int i = 0; i < Employee.LEN; i++) {
			strName3 = strName3 + raf2.readChar();
		}
		int age3 = raf2.readInt();
		System.out.println("strName3 = " + strName3.trim());
		System.out.println("age3 = " + age3);
	}
}

class Employee {
	// 年齡
	public int age;
	// 姓名
	public String name;
	// 姓名的長度
	public static final int LEN = 8;

	public Employee(int age, String name) {
		this.age = age;

		// 對name字元長度的一個處理
		if (name.length() > LEN) {
			name = name.substring(0, LEN);
		} else {
			while (name.length() < LEN) {
				name = name + "/u0000";
			}
		}
		this.name = name;
	}

	public int getAge() {
		return age;
	}

	public String getName() {
		return name;
	}

}
           
Java的檔案讀寫操作file(記憶體)----輸入流----&gt;【程式】----輸出流----&gt;file(記憶體)java中多種方式讀檔案java 寫檔案的三種方法比較java中的getParentFileJava RandomAccessFile的使用高效的RandomAccessFile高效的RandomAccessFile【續】
/**
 * 往檔案中依次寫入3名員工的資訊,
 * 每位員工有姓名和員工兩個字段 然後按照
 * 第二名,第一名,第三名的先後順序讀取員工資訊
 */
import java.io.File;
import java.io.RandomAccessFile;

public class RandomAccessFileTest {
	public static void main(String[] args) throws Exception {
		Employee e1 = new Employee(23, "張三");
		Employee e2 = new Employee(24, "lisi");
		Employee e3 = new Employee(25, "王五");
		File file = new File("employee.txt");
		if (!file.exists()) {
			file.createNewFile();
		}
		// 一個中文占兩個位元組 一個英文字母占一個位元組
		// 整形 占的位元組數目 跟cpu位長有關 32位的占4個位元組
		RandomAccessFile randomAccessFile = new RandomAccessFile(file, "rw");
		randomAccessFile.writeChars(e1.getName());
		randomAccessFile.writeInt(e1.getAge());
		randomAccessFile.writeChars(e2.getName());
		randomAccessFile.writeInt(e2.getAge());
		randomAccessFile.writeChars(e3.getName());
		randomAccessFile.writeInt(e3.getAge());
		randomAccessFile.close();

		RandomAccessFile raf2 = new RandomAccessFile(file, "r");
		raf2.skipBytes(Employee.LEN * 2 + 4);
		String strName2 = "";
		for (int i = 0; i < Employee.LEN; i++) {
			strName2 = strName2 + raf2.readChar();
		}
		int age2 = raf2.readInt();
		System.out.println("strName2 = " + strName2.trim());
		System.out.println("age2 = " + age2);

		raf2.seek(0);
		String strName1 = "";
		for (int i = 0; i < Employee.LEN; i++) {
			strName1 = strName1 + raf2.readChar();
		}
		int age1 = raf2.readInt();
		System.out.println("strName1 = " + strName1.trim());
		System.out.println("age1 = " + age1);

		raf2.skipBytes(Employee.LEN * 2 + 4);
		String strName3 = "";
		for (int i = 0; i < Employee.LEN; i++) {
			strName3 = strName3 + raf2.readChar();
		}
		int age3 = raf2.readInt();
		System.out.println("strName3 = " + strName3.trim());
		System.out.println("age3 = " + age3);
	}
}

class Employee {
	// 年齡
	public int age;
	// 姓名
	public String name;
	// 姓名的長度
	public static final int LEN = 8;

	public Employee(int age, String name) {
		this.age = age;

		// 對name字元長度的一個處理
		if (name.length() > LEN) {
			name = name.substring(0, LEN);
		} else {
			while (name.length() < LEN) {
				name = name + "/u0000";
			}
		}
		this.name = name;
	}

	public int getAge() {
		return age;
	}

	public String getName() {
		return name;
	}

}
           

高效的RandomAccessFile

http://zhang-xiujiao.iteye.com/blog/1150751

主體:

RandomAccessFile類。其I/O性能較之其它常用開發語言的同類性能差距甚遠,嚴重影響程式的運作效率。

開發人員迫切需要提高效率,下面分析RandomAccessFile等檔案類的源代碼,找出其中的症結所在,并加以改進優化,建立一個"性/價比"俱佳的随機檔案通路類BufferedRandomAccessFile。

在改進之前先做一個基本測試:逐位元組COPY一個12兆的檔案(這裡牽涉到讀和寫)。

耗用時間(秒)
RandomAccessFile RandomAccessFile 95.848
BufferedInputStream + DataInputStream BufferedOutputStream + DataOutputStream 2.935

我們可以看到兩者差距約32倍,RandomAccessFile也太慢了。先看看兩者關鍵部分的源代碼,對比分析,找出原因。

1.1.[RandomAccessFile]

public class RandomAccessFile implements DataOutput, DataInput {  
    public final byte readByte() throws IOException {  
        int ch = this.read();  
        if (ch < 0)  
            throw new EOFException();  
        return (byte)(ch);  
    }  
    public native int read() throws IOException;   
    public final void writeByte(int v) throws IOException {  
        write(v);  
    }   
    public native void write(int b) throws IOException;   
}  
           

可見,RandomAccessFile每讀/寫一個位元組就需對磁盤進行一次I/O操作。

1.2.[BufferedInputStream]

public class BufferedInputStream extends FilterInputStream {  
    private static int defaultBufferSize = 2048;   
    protected byte buf[]; // 建立讀緩存區  
    public BufferedInputStream(InputStream in, int size) {  
        super(in);          
        if (size <= 0) {  
            throw new IllegalArgumentException("Buffer size <= 0");  
        }  
        buf = new byte[size];  
    }  
    public synchronized int read() throws IOException {  
        ensureOpen();  
        if (pos >= count) {  
            fill();  
            if (pos >= count)  
                return -1;  
        }  
        return buf[pos++] & 0xff; // 直接從BUF[]中讀取  
    }   
    private void fill() throws IOException {  
    if (markpos < 0)  
        pos = 0;        /* no mark: throw away the buffer */  
    else if (pos >= buf.length)  /* no room left in buffer */  
        if (markpos > 0) {   /* can throw away early part of the buffer */  
        int sz = pos - markpos;  
        System.arraycopy(buf, markpos, buf, 0, sz);  
        pos = sz;  
        markpos = 0;  
        } else if (buf.length >= marklimit) {  
        markpos = -1;   /* buffer got too big, invalidate mark */  
        pos = 0;    /* drop buffer contents */  
        } else {        /* grow buffer */  
        int nsz = pos * 2;  
        if (nsz > marklimit)  
            nsz = marklimit;  
        byte nbuf[] = new byte[nsz];  
        System.arraycopy(buf, 0, nbuf, 0, pos);  
        buf = nbuf;  
        }  
    count = pos;  
    int n = in.read(buf, pos, buf.length - pos);  
    if (n > 0)  
        count = n + pos;  
    }  
}  
           
Java的檔案讀寫操作file(記憶體)----輸入流----&gt;【程式】----輸出流----&gt;file(記憶體)java中多種方式讀檔案java 寫檔案的三種方法比較java中的getParentFileJava RandomAccessFile的使用高效的RandomAccessFile高效的RandomAccessFile【續】

1.3.[BufferedOutputStream]

Java的檔案讀寫操作file(記憶體)----輸入流----&gt;【程式】----輸出流----&gt;file(記憶體)java中多種方式讀檔案java 寫檔案的三種方法比較java中的getParentFileJava RandomAccessFile的使用高效的RandomAccessFile高效的RandomAccessFile【續】
public class BufferedOutputStream extends FilterOutputStream {  
   protected byte buf[]; // 建立寫緩存區  
   public BufferedOutputStream(OutputStream out, int size) {  
        super(out);  
        if (size <= 0) {  
            throw new IllegalArgumentException("Buffer size <= 0");  
        }  
        buf = new byte[size];  
    }   
public synchronized void write(int b) throws IOException {  
        if (count >= buf.length) {  
            flushBuffer();  
        }  
        buf[count++] = (byte)b; // 直接從BUF[]中讀取  
   }  
   private void flushBuffer() throws IOException {  
        if (count > 0) {  
            out.write(buf, 0, count);  
            count = 0;  
        }  
   }  
}  
           

可見,Buffered I/O putStream每讀/寫一個位元組,若要操作的資料在BUF中,就直接對記憶體的buf[]進行讀/寫操作;否則從磁盤相應位置填充buf[],再直接對記憶體的buf[]進行讀/寫操作,絕大部分的讀/寫操作是對記憶體buf[]的操作。

1.3.小結

記憶體存取時間機關是納秒級(10E-9),磁盤存取時間機關是毫秒級(10E-3),同樣操作一次的開銷,記憶體比磁盤快了百萬倍。理論上可以預見,即使對記憶體操作上萬次,花費的時間也遠少對于磁盤一次I/O的開銷。顯然後者是通過增加位于記憶體的BUF存取,減少磁盤I/O的開銷,提高存取效率的,當然這樣也增加了BUF控制部分的開銷。從實際應用來看,存取效率提高了32倍。

根據1.3得出的結論,現試着對RandomAccessFile類也加上緩沖讀寫機制。

随機通路類與順序類不同,前者是通過實作DataInput/DataOutput接口建立的,而後者是擴充FilterInputStream/FilterOutputStream建立的,不能直接照搬。

2.1.開辟緩沖區BUF[預設:1024位元組],用作讀/寫的共用緩沖區。

2.2.先實作讀緩沖。

讀緩沖邏輯的基本原理:

  • A 欲讀檔案POS位置的一個位元組。
  • B 查BUF中是否存在?若有,直接從BUF中讀取,并傳回該字元BYTE。
  • C 若沒有,則BUF重新定位到該POS所在的位置并把該位置附近的BUFSIZE的位元組的檔案内容填充BUFFER,傳回B。

以下給出關鍵部分代碼及其說明:

Java代碼  

Java的檔案讀寫操作file(記憶體)----輸入流----&gt;【程式】----輸出流----&gt;file(記憶體)java中多種方式讀檔案java 寫檔案的三種方法比較java中的getParentFileJava RandomAccessFile的使用高效的RandomAccessFile高效的RandomAccessFile【續】
  1. public class BufferedRandomAccessFile extends RandomAccessFile {  
  2. //  byte read(long pos):讀取目前檔案POS位置所在的位元組  
  3. //  bufstartpos、bufendpos代表BUF映射在目前檔案的首/尾偏移位址。  
  4. //  curpos指目前類檔案指針的偏移位址。  
  5.     public byte read(long pos) throws IOException {  
  6.         if (pos < this.bufstartpos || pos > this.bufendpos ) {  
  7.             this.flushbuf();  
  8.             this.seek(pos);  
  9.             if ((pos < this.bufstartpos) || (pos > this.bufendpos))   
  10.                 throw new IOException();  
  11.         }  
  12.         this.curpos = pos;  
  13.         return this.buf[(int)(pos - this.bufstartpos)];  
  14.     }  
  15. // void flushbuf():bufdirty為真,把buf[]中尚未寫入磁盤的資料,寫入磁盤。  
  16.     private void flushbuf() throws IOException {  
  17.         if (this.bufdirty == true) {  
  18.             if (super.getFilePointer() != this.bufstartpos) {  
  19.                 super.seek(this.bufstartpos);  
  20.             }  
  21.             super.write(this.buf, 0, this.bufusedsize);  
  22.             this.bufdirty = false;  
  23.         }  
  24.     }  
  25. // void seek(long pos):移動檔案指針到pos位置,并把buf[]映射填充至POS所在的檔案塊。  
  26.     public void seek(long pos) throws IOException {  
  27.         if ((pos < this.bufstartpos) || (pos > this.bufendpos)) { // seek pos not in buf  
  28.             this.flushbuf();  
  29.             if ((pos >= 0) && (pos <= this.fileendpos) && (this.fileendpos != 0)) {   // seek pos in file (file length > 0)  
  30.                   this.bufstartpos =  pos * bufbitlen / bufbitlen;  
  31.                   this.bufusedsize = this.fillbuf();  
  32.             } else if (((pos == 0) && (this.fileendpos == 0)) || (pos == this.fileendpos + 1)) {   // seek pos is append pos  
  33.                 this.bufstartpos = pos;  
  34.                 this.bufusedsize = 0;  
  35.             }  
  36.             this.bufendpos = this.bufstartpos + this.bufsize - 1;  
  37.         }  
  38.         this.curpos = pos;  
  39.     }  
  40. // int fillbuf():根據bufstartpos,填充buf[]。  
  41.     private int fillbuf() throws IOException {  
  42.         super.seek(this.bufstartpos);  
  43.         this.bufdirty = false;  
  44.         return super.read(this.buf);  
  45.     }  
  46. }  
Java的檔案讀寫操作file(記憶體)----輸入流----&gt;【程式】----輸出流----&gt;file(記憶體)java中多種方式讀檔案java 寫檔案的三種方法比較java中的getParentFileJava RandomAccessFile的使用高效的RandomAccessFile高效的RandomAccessFile【續】

至此緩沖讀基本實作,逐位元組COPY一個12兆的檔案(這裡牽涉到讀和寫,用BufferedRandomAccessFile試一下讀的速度):

耗用時間(秒)
RandomAccessFile RandomAccessFile 95.848
BufferedRandomAccessFile BufferedOutputStream + DataOutputStream 2.813
BufferedInputStream + DataInputStream BufferedOutputStream + DataOutputStream 2.935

可見速度顯著提高,與BufferedInputStream+DataInputStream不相上下。

2.3.實作寫緩沖。

寫緩沖邏輯的基本原理:

  • A欲寫檔案POS位置的一個位元組。
  • B 查BUF中是否有該映射?若有,直接向BUF中寫入,并傳回true。
  • C若沒有,則BUF重新定位到該POS所在的位置,并把該位置附近的 BUFSIZE位元組的檔案内容填充BUFFER,傳回B。

下面給出關鍵部分代碼及其說明:

Java代碼  

Java的檔案讀寫操作file(記憶體)----輸入流----&gt;【程式】----輸出流----&gt;file(記憶體)java中多種方式讀檔案java 寫檔案的三種方法比較java中的getParentFileJava RandomAccessFile的使用高效的RandomAccessFile高效的RandomAccessFile【續】
  1. // boolean write(byte bw, long pos):向目前檔案POS位置寫入位元組BW。  
  2. // 根據POS的不同及BUF的位置:存在修改、追加、BUF中、BUF外等情況。在邏輯判斷時,把最可能出現的情況,最先判斷,這樣可提高速度。  
  3. // fileendpos:訓示目前檔案的尾偏移位址,主要考慮到追加因素  
  4.     public boolean write(byte bw, long pos) throws IOException {  
  5.         if ((pos >= this.bufstartpos) && (pos <= this.bufendpos)) { // write pos in buf  
  6.             this.buf[(int)(pos - this.bufstartpos)] = bw;  
  7.             this.bufdirty = true;  
  8.             if (pos == this.fileendpos + 1) { // write pos is append pos  
  9.                 this.fileendpos++;  
  10.                 this.bufusedsize++;  
  11.             }  
  12.         } else { // write pos not in buf  
  13.             this.seek(pos);  
  14.             if ((pos >= 0) && (pos <= this.fileendpos) && (this.fileendpos != 0)) { // write pos is modify file  
  15.                 this.buf[(int)(pos - this.bufstartpos)] = bw;  
  16.             } else if (((pos == 0) && (this.fileendpos == 0)) || (pos == this.fileendpos + 1)) { // write pos is append pos  
  17.                 this.buf[0] = bw;  
  18.                 this.fileendpos++;  
  19.                 this.bufusedsize = 1;  
  20.             } else {  
  21.                 throw new IndexOutOfBoundsException();  
  22.             }  
  23.             this.bufdirty = true;  
  24.         }  
  25.         this.curpos = pos;  
  26.         return true;  
  27.     }  
Java的檔案讀寫操作file(記憶體)----輸入流----&gt;【程式】----輸出流----&gt;file(記憶體)java中多種方式讀檔案java 寫檔案的三種方法比較java中的getParentFileJava RandomAccessFile的使用高效的RandomAccessFile高效的RandomAccessFile【續】

至此緩沖寫基本實作,逐位元組COPY一個12兆的檔案,(這裡牽涉到讀和寫,結合緩沖讀,用BufferedRandomAccessFile試一下讀/寫的速度):

耗用時間(秒)
RandomAccessFile RandomAccessFile 95.848
BufferedInputStream + DataInputStream BufferedOutputStream + DataOutputStream 2.935
BufferedRandomAccessFile BufferedOutputStream + DataOutputStream 2.813
BufferedRandomAccessFile BufferedRandomAccessFile 2.453

可見綜合讀/寫速度已超越BufferedInput/OutputStream+DataInput/OutputStream。

高效的RandomAccessFile【續】

http://zhang-xiujiao.iteye.com/blog/1150762

優化BufferedRandomAccessFile。

優化原則:

  •     調用頻繁的語句最需要優化,且優化的效果最明顯。
  •     多重嵌套邏輯判斷時,最可能出現的判斷,應放在最外層。
  •     減少不必要的NEW。

這裡舉一典型的例子:

Java代碼  

Java的檔案讀寫操作file(記憶體)----輸入流----&gt;【程式】----輸出流----&gt;file(記憶體)java中多種方式讀檔案java 寫檔案的三種方法比較java中的getParentFileJava RandomAccessFile的使用高效的RandomAccessFile高效的RandomAccessFile【續】
  1.  public void seek(long pos) throws IOException {  
  2. ...  
  3.        this.bufstartpos =  pos * bufbitlen / bufbitlen; // bufbitlen指buf[]的位長,例:若bufsize=1024,則bufbitlen=10。  
  4.               ...  
  5. }  
Java的檔案讀寫操作file(記憶體)----輸入流----&gt;【程式】----輸出流----&gt;file(記憶體)java中多種方式讀檔案java 寫檔案的三種方法比較java中的getParentFileJava RandomAccessFile的使用高效的RandomAccessFile高效的RandomAccessFile【續】

seek函數使用在各函數中,調用非常頻繁,上面加重的這行語句根據pos和bufsize确定buf[]對應目前檔案的映射位置,用"*"、"/"确定,顯然不是一個好方法。

  • 優化一:this.bufstartpos = (pos << bufbitlen) >> bufbitlen;
  • 優化二:this.bufstartpos = pos & bufmask; // this.bufmask = ~((long)this.bufsize - 1);

兩者效率都比原來好,但後者顯然更好,因為前者需要兩次移位運算、後者隻需一次邏輯與運算(bufmask可以預先得出)。

至此優化基本實作,逐位元組COPY一個12兆的檔案,(這裡牽涉到讀和寫,結合緩沖讀,用優化後BufferedRandomAccessFile試一下讀/寫的速度):

耗用時間(秒)
RandomAccessFile RandomAccessFile 95.848
BufferedInputStream + DataInputStream BufferedOutputStream + DataOutputStream 2.935
BufferedRandomAccessFile BufferedOutputStream + DataOutputStream 2.813
BufferedRandomAccessFile BufferedRandomAccessFile 2.453
BufferedRandomAccessFile優 BufferedRandomAccessFile優 2.197

可見優化盡管不明顯,還是比未優化前快了一些,也許這種效果在老式機上會更明顯。

以上比較的是順序存取,即使是随機存取,在絕大多數情況下也不止一個BYTE,是以緩沖機制依然有效。而一般的順序存取類要實作随機存取就不怎麼容易了。

需要完善的地方

提供檔案追加功能:

Java代碼  

Java的檔案讀寫操作file(記憶體)----輸入流----&gt;【程式】----輸出流----&gt;file(記憶體)java中多種方式讀檔案java 寫檔案的三種方法比較java中的getParentFileJava RandomAccessFile的使用高效的RandomAccessFile高效的RandomAccessFile【續】
  1. public boolean append(byte bw) throws IOException {  
  2.    return this.write(bw, this.fileendpos + 1);  
  3. }  

提供檔案目前位置修改功能:

Java代碼  

Java的檔案讀寫操作file(記憶體)----輸入流----&gt;【程式】----輸出流----&gt;file(記憶體)java中多種方式讀檔案java 寫檔案的三種方法比較java中的getParentFileJava RandomAccessFile的使用高效的RandomAccessFile高效的RandomAccessFile【續】
  1. public boolean write(byte bw) throws IOException {  
  2.    return this.write(bw, this.curpos);  
  3. }  

傳回檔案長度(由于BUF讀寫的原因,與原來的RandomAccessFile類有所不同):

Java代碼  

Java的檔案讀寫操作file(記憶體)----輸入流----&gt;【程式】----輸出流----&gt;file(記憶體)java中多種方式讀檔案java 寫檔案的三種方法比較java中的getParentFileJava RandomAccessFile的使用高效的RandomAccessFile高效的RandomAccessFile【續】
  1. public long length() throws IOException {  
  2.    return this.max(this.fileendpos + 1, this.initfilelen);  
  3. }  

傳回檔案目前指針(由于是通過BUF讀寫的原因,與原來的RandomAccessFile類有所不同):

Java代碼  

Java的檔案讀寫操作file(記憶體)----輸入流----&gt;【程式】----輸出流----&gt;file(記憶體)java中多種方式讀檔案java 寫檔案的三種方法比較java中的getParentFileJava RandomAccessFile的使用高效的RandomAccessFile高效的RandomAccessFile【續】
  1. public long getFilePointer() throws IOException {  
  2.    return this.curpos;  
  3. }  
Java的檔案讀寫操作file(記憶體)----輸入流----&gt;【程式】----輸出流----&gt;file(記憶體)java中多種方式讀檔案java 寫檔案的三種方法比較java中的getParentFileJava RandomAccessFile的使用高效的RandomAccessFile高效的RandomAccessFile【續】

提供對目前位置的多個位元組的緩沖寫功能:

Java代碼  

Java的檔案讀寫操作file(記憶體)----輸入流----&gt;【程式】----輸出流----&gt;file(記憶體)java中多種方式讀檔案java 寫檔案的三種方法比較java中的getParentFileJava RandomAccessFile的使用高效的RandomAccessFile高效的RandomAccessFile【續】
  1. public void write(byte b[], int off, int len) throws IOException {  
  2.         long writeendpos = this.curpos + len - 1;  
  3.         if (writeendpos <= this.bufendpos) { // b[] in cur buf  
  4.             System.arraycopy(b, off, this.buf, (int)(this.curpos - this.bufstartpos), len);  
  5.             this.bufdirty = true;  
  6.             this.bufusedsize = (int)(writeendpos - this.bufstartpos + 1);  
  7.         } else { // b[] not in cur buf  
  8.             super.seek(this.curpos);  
  9.             super.write(b, off, len);  
  10.         }  
  11.         if (writeendpos > this.fileendpos)  
  12.             this.fileendpos = writeendpos;  
  13.         this.seek(writeendpos+1);  
  14. }  
  15. public void write(byte b[]) throws IOException {  
  16.         this.write(b, 0, b.length);  
  17. }  
Java的檔案讀寫操作file(記憶體)----輸入流----&gt;【程式】----輸出流----&gt;file(記憶體)java中多種方式讀檔案java 寫檔案的三種方法比較java中的getParentFileJava RandomAccessFile的使用高效的RandomAccessFile高效的RandomAccessFile【續】

提供對目前位置的多個位元組的緩沖讀功能:

Java代碼  

Java的檔案讀寫操作file(記憶體)----輸入流----&gt;【程式】----輸出流----&gt;file(記憶體)java中多種方式讀檔案java 寫檔案的三種方法比較java中的getParentFileJava RandomAccessFile的使用高效的RandomAccessFile高效的RandomAccessFile【續】
  1. public int read(byte b[], int off, int len) throws IOException {  
  2.     long readendpos = this.curpos + len - 1;  
  3.     if (readendpos <= this.bufendpos && readendpos <= this.fileendpos ) { // read in buf  
  4.         System.arraycopy(this.buf, (int)(this.curpos - this.bufstartpos), b, off, len);  
  5.     } else { // read b[] size > buf[]  
  6.     if (readendpos > this.fileendpos) { // read b[] part in file  
  7.         len = (int)(this.length() - this.curpos + 1);  
  8.     }  
  9.        super.seek(this.curpos);  
  10.        len = super.read(b, off, len);  
  11.        readendpos = this.curpos + len - 1;  
  12.    }  
  13.        this.seek(readendpos + 1);  
  14.        return len;  
  15. }  
  16. public int read(byte b[]) throws IOException {  
  17.    return this.read(b, 0, b.length);  
  18. }  
  19. public void setLength(long newLength) throws IOException {  
  20.    if (newLength > 0) {  
  21.        this.fileendpos = newLength - 1;  
  22.    } else {  
  23.        this.fileendpos = 0;  
  24.    }  
  25.    super.setLength(newLength);  
  26. }  
  27. public void close() throws IOException {  
  28.    this.flushbuf();  
  29.    super.close();  
  30. }  
Java的檔案讀寫操作file(記憶體)----輸入流----&gt;【程式】----輸出流----&gt;file(記憶體)java中多種方式讀檔案java 寫檔案的三種方法比較java中的getParentFileJava RandomAccessFile的使用高效的RandomAccessFile高效的RandomAccessFile【續】

至此完善工作基本完成,試一下新增的多位元組讀/寫功能,通過同時讀/寫1024個位元組,來COPY一個12兆的檔案,(這裡牽涉到讀和寫,用完善後BufferedRandomAccessFile試一下讀/寫的速度):

耗用時間(秒)
RandomAccessFile RandomAccessFile 95.848
BufferedInputStream + DataInputStream BufferedOutputStream + DataOutputStream 2.935
BufferedRandomAccessFile BufferedOutputStream + DataOutputStream 2.813
BufferedRandomAccessFile BufferedRandomAccessFile 2.453
BufferedRandomAccessFile優 BufferedRandomAccessFile優 2.197
BufferedRandomAccessFile完 BufferedRandomAccessFile完 0.401

與MappedByteBuffer+RandomAccessFile的對比?

JDK1.4+提供了NIO類 ,其中MappedByteBuffer類用于映射緩沖,也可以映射随機檔案通路,可見JAVA設計者也看到了RandomAccessFile的問題,并加以改進。怎麼通過MappedByteBuffer+RandomAccessFile拷貝檔案呢?下面就是測試程式的主要部分:

Java代碼  

Java的檔案讀寫操作file(記憶體)----輸入流----&gt;【程式】----輸出流----&gt;file(記憶體)java中多種方式讀檔案java 寫檔案的三種方法比較java中的getParentFileJava RandomAccessFile的使用高效的RandomAccessFile高效的RandomAccessFile【續】
  1. RandomAccessFile rafi = new RandomAccessFile(SrcFile, "r");  
  2. RandomAccessFile rafo = new RandomAccessFile(DesFile, "rw");  
  3. FileChannel fci = rafi.getChannel();  
  4. FileChannel fco = rafo.getChannel();  
  5. long size = fci.size();  
  6. MappedByteBuffer mbbi = fci.map(FileChannel.MapMode.READ_ONLY, 0, size);  
  7. MappedByteBuffer mbbo = fco.map(FileChannel.MapMode.READ_WRITE, 0, size);  
  8. long start = System.currentTimeMillis();  
  9. for (int i = 0; i < size; i++) {  
  10.     byte b = mbbi.get(i);  
  11.     mbbo.put(i, b);  
  12. }  
  13. fcin.close();  
  14. fcout.close();  
  15. rafi.close();  
  16. rafo.close();  
  17. System.out.println("Spend: "+(double)(System.currentTimeMillis()-start) / 1000 + "s");  
Java的檔案讀寫操作file(記憶體)----輸入流----&gt;【程式】----輸出流----&gt;file(記憶體)java中多種方式讀檔案java 寫檔案的三種方法比較java中的getParentFileJava RandomAccessFile的使用高效的RandomAccessFile高效的RandomAccessFile【續】

試一下JDK1.4的映射緩沖讀/寫功能,逐位元組COPY一個12兆的檔案,(這裡牽涉到讀和寫):

耗用時間(秒)
RandomAccessFile RandomAccessFile 95.848
BufferedInputStream + DataInputStream BufferedOutputStream + DataOutputStream 2.935
BufferedRandomAccessFile BufferedOutputStream + DataOutputStream 2.813
BufferedRandomAccessFile BufferedRandomAccessFile 2.453
BufferedRandomAccessFile優 BufferedRandomAccessFile優 2.197
BufferedRandomAccessFile完 BufferedRandomAccessFile完 0.401
MappedByteBuffer+ RandomAccessFile MappedByteBuffer+ RandomAccessFile 1.209

确實不錯,看來NIO有了極大的進步。建議采用 MappedByteBuffer+RandomAccessFile的方式。