Java 文件讀寫流
java 文件讀寫流
java.io 包含了用于文件讀寫的兩個流類: fileinputstream 和 fileoutputstream。
1. fileinputstream 讀文件流
fileinputstream 用于從文件讀取數據,它的對象可以用關鍵字 new 來創建。
1)inputstream 構造方法
可以使用字符串類型的文件名來創建一個輸入流對象來讀取文件:
outputstream f = new fileoutputstream("c:/java/hello")
也可以使用一個文件對象來創建一個輸入流對象來讀取文件。我們首先得使用 file() 方法來創建一個文件對象:
file f = new file("c:/java/hello"); outputstream fout = new fileoutputstream(f);
2)inputstream 操作方法
創建了 inputstream 對象,就可以使用下面的方法來讀取流或者進行其它操作。
序號 | 方法及描述 |
---|---|
1 |
public void close() throws ioexception{} 關閉此文件輸入流并釋放與此流有關的所有系統資源。拋出ioexception異常。 |
2 |
protected void finalize()throws ioexception {} 這個方法清除與該文件的連接。確保在不再引用文件輸入流時調用其 close 方法。拋出ioexception異常。 |
3 |
public int read(int r)throws ioexception{} 這個方法從 inputstream 對象讀取指定字節的數據。返回為整數值。返回下一字節數據,如果已經到結尾則返回-1。 |
4 |
public int read(byte[] r) throws ioexception{} 這個方法從輸入流讀取r.length長度的字節。返回讀取的字節數。如果是文件結尾則返回-1。 |
5 |
public int available() throws ioexception{} 返回下一次對此輸入流調用的方法可以不受阻塞地從此輸入流讀取的字節數。返回一個整數值。 |
除了 inputstream 外,還有一些其他的輸入流
2. fileoutputstream 寫文件流
該類用來創建一個文件并向文件中寫數據。如果該流在打開文件進行輸出前,目標文件不存在,那么該流會創建該文件。
1)fileoutputstream 構造方法
有兩個構造方法可以用來創建 fileoutputstream 對象。使用字符串類型的文件名來創建一個輸出流對象:
outputstream f = new fileoutputstream("c:/java/hello")
也可以使用一個文件對象來創建一個輸出流來寫文件。我們首先得使用file()方法來創建一個文件對象:
file f = new file("c:/java/hello"); outputstream fout = new fileoutputstream(f);
2)outputstream 操作方法
創建 outputstream 對象完成后,就可以使用下面的方法來寫入流或者進行其他的流操作。
序號 | 方法及描述 |
---|---|
1 |
public void close() throws ioexception{} 關閉此文件輸入流并釋放與此流有關的所有系統資源。拋出ioexception異常。 |
2 |
protected void finalize()throws ioexception {} 這個方法清除與該文件的連接。確保在不再引用文件輸入流時調用其 close 方法。拋出ioexception異常。 |
3 |
public void write(int w)throws ioexception{} 這個方法把指定的字節寫到輸出流中。 |
4 |
public void write(byte[] w) 把指定數組中w.length長度的字節寫到outputstream中。 |
除了outputstream外,還有一些其他的輸出流,更多的細節參考下面鏈接:
3. 文件讀寫范例
下面是一個演示 inputstream 和 outputstream 用法的例子:
import java.io.*; public class filestreamtest { public static void main(string[] args) { try { byte bwrite[] = { 11, 21, 3, 40, 5 }; outputstream os = new fileoutputstream("test.txt"); for (int x = 0; x < bwrite.length; x++) { os.write(bwrite[x]); // writes the bytes } os.close(); inputstream is = new fileinputstream("test.txt"); int size = is.available(); for (int i = 0; i < size; i++) { system.out.print((char) is.read() + " "); } is.close(); } catch (ioexception e) { system.out.print("exception"); } } }
上面的程序首先創建文件test.txt,并把給定的數字以二進制形式寫進該文件,同時輸出到控制臺上。
以上代碼由于是二進制寫入,可能存在亂碼,你可以使用以下代碼范例來解決亂碼問題:
//文件名 :filestreamtest2.java import java.io.*; public class filestreamtest2 { public static void main(string[] args) throws ioexception { file f = new file("a.txt"); fileoutputstream fop = new fileoutputstream(f); // 構建fileoutputstream對象,文件不存在會自動新建 outputstreamwriter writer = new outputstreamwriter(fop, "utf-8"); // 構建outputstreamwriter對象,參數可以指定編碼,默認為操作系統默認編碼,windows上是gbk writer.append("中文輸入"); // 寫入到緩沖區 writer.append("\r\n"); // 換行 writer.append("english"); // 刷新緩存沖,寫入到文件,如果下面已經沒有寫入的內容了,直接close也會寫入 writer.close(); // 關閉寫入流,同時會把緩沖區內容寫入文件,所以上面的注釋掉 fop.close(); // 關閉輸出流,釋放系統資源 fileinputstream fip = new fileinputstream(f); // 構建fileinputstream對象 inputstreamreader reader = new inputstreamreader(fip, "utf-8"); // 構建inputstreamreader對象,編碼與寫入相同 stringbuffer sb = new stringbuffer(); while (reader.ready()) { sb.append((char) reader.read()); // 轉成char加到stringbuffer對象中 } system.out.println(sb.tostring()); reader.close(); // 關閉讀取流 fip.close(); // 關閉輸入流,釋放系統資源 } }