Java 文件讀寫流

java 文件讀寫流

java.io 包含了用于文件讀寫的兩個流類: fileinputstream 和 fileoutputstream。

 

1. fileinputstream 讀文件流

fileinputstream 用于從文件讀取數(shù)據(jù),它的對象可以用關鍵字 new 來創(chuàng)建。

1)inputstream 構(gòu)造方法

可以使用字符串類型的文件名來創(chuàng)建一個輸入流對象來讀取文件:

outputstream f = new fileoutputstream("c:/java/hello")

也可以使用一個文件對象來創(chuàng)建一個輸入流對象來讀取文件。我們首先得使用 file() 方法來創(chuàng)建一個文件對象:

file f = new file("c:/java/hello");
outputstream fout = new fileoutputstream(f);

2)inputstream 操作方法

創(chuàng)建了 inputstream 對象,就可以使用下面的方法來讀取流或者進行其它操作。

序號 方法及描述
1 public void close() throws ioexception{}
關閉此文件輸入流并釋放與此流有關的所有系統(tǒng)資源。拋出ioexception異常。
2 protected void finalize()throws ioexception {}
這個方法清除與該文件的連接。確保在不再引用文件輸入流時調(diào)用其 close 方法。拋出ioexception異常。
3 public int read(int r)throws ioexception{}
這個方法從 inputstream 對象讀取指定字節(jié)的數(shù)據(jù)。返回為整數(shù)值。返回下一字節(jié)數(shù)據(jù),如果已經(jīng)到結(jié)尾則返回-1。
4 public int read(byte[] r) throws ioexception{}
這個方法從輸入流讀取r.length長度的字節(jié)。返回讀取的字節(jié)數(shù)。如果是文件結(jié)尾則返回-1。
5 public int available() throws ioexception{}
返回下一次對此輸入流調(diào)用的方法可以不受阻塞地從此輸入流讀取的字節(jié)數(shù)。返回一個整數(shù)值。

除了 inputstream 外,還有一些其他的輸入流

 

2. fileoutputstream 寫文件流

該類用來創(chuàng)建一個文件并向文件中寫數(shù)據(jù)。如果該流在打開文件進行輸出前,目標文件不存在,那么該流會創(chuàng)建該文件。

1)fileoutputstream 構(gòu)造方法

有兩個構(gòu)造方法可以用來創(chuàng)建 fileoutputstream 對象。使用字符串類型的文件名來創(chuàng)建一個輸出流對象:

outputstream f = new fileoutputstream("c:/java/hello")

也可以使用一個文件對象來創(chuàng)建一個輸出流來寫文件。我們首先得使用file()方法來創(chuàng)建一個文件對象:

file f = new file("c:/java/hello");
outputstream fout = new fileoutputstream(f);

2)outputstream 操作方法

創(chuàng)建 outputstream 對象完成后,就可以使用下面的方法來寫入流或者進行其他的流操作。

序號 方法及描述
1 public void close() throws ioexception{}
關閉此文件輸入流并釋放與此流有關的所有系統(tǒng)資源。拋出ioexception異常。
2 protected void finalize()throws ioexception {}
這個方法清除與該文件的連接。確保在不再引用文件輸入流時調(diào)用其 close 方法。拋出ioexception異常。
3 public void write(int w)throws ioexception{}
這個方法把指定的字節(jié)寫到輸出流中。
4 public void write(byte[] w)
把指定數(shù)組中w.length長度的字節(jié)寫到outputstream中。

除了outputstream外,還有一些其他的輸出流,更多的細節(jié)參考下面鏈接:

 

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");
        }
    }
}

上面的程序首先創(chuàng)建文件test.txt,并把給定的數(shù)字以二進制形式寫進該文件,同時輸出到控制臺上。

以上代碼由于是二進制寫入,可能存在亂碼,你可以使用以下代碼范例來解決亂碼問題:

//文件名 :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);
        // 構(gòu)建fileoutputstream對象,文件不存在會自動新建
    
        outputstreamwriter writer = new outputstreamwriter(fop, "utf-8");
        // 構(gòu)建outputstreamwriter對象,參數(shù)可以指定編碼,默認為操作系統(tǒng)默認編碼,windows上是gbk
    
        writer.append("中文輸入");
        // 寫入到緩沖區(qū)
    
        writer.append("\r\n");
        // 換行
    
        writer.append("english");
        // 刷新緩存沖,寫入到文件,如果下面已經(jīng)沒有寫入的內(nèi)容了,直接close也會寫入
    
        writer.close();
        // 關閉寫入流,同時會把緩沖區(qū)內(nèi)容寫入文件,所以上面的注釋掉
    
        fop.close();
        // 關閉輸出流,釋放系統(tǒng)資源
    
        fileinputstream fip = new fileinputstream(f);
        // 構(gòu)建fileinputstream對象
    
        inputstreamreader reader = new inputstreamreader(fip, "utf-8");
        // 構(gòu)建inputstreamreader對象,編碼與寫入相同
    
        stringbuffer sb = new stringbuffer();
        while (reader.ready()) {
            sb.append((char) reader.read());
            // 轉(zhuǎn)成char加到stringbuffer對象中
        }
        system.out.println(sb.tostring());
        reader.close();
        // 關閉讀取流
    
        fip.close();
        // 關閉輸入流,釋放系統(tǒng)資源
    
    }
}

下一節(jié):java 文件操作

java語言 教程

相關文章
亚洲国产精品第一区二区,久久免费视频77,99V久久综合狠狠综合久久,国产免费久久九九免费视频