Java 流(Stream)、檔案(File)和IO

來源:互聯網
上載者:User

標籤:方便   對象建立   參考   log   一個輸入資料流   png   bsp   scanner   引用   

Java.io 包幾乎包含了所有操作輸入、輸出需要的類。所有這些流類代表了輸入源和輸出目標。

Java.io 包中的流支援很多種格式,比如:基本類型、對象、本地化字元集等等。

一個流可以理解為一個資料的序列。輸入資料流表示從一個源讀取資料,輸出資料流表示向一個目標寫資料。

Java 為 I/O 提供了強大的而靈活的支援,使其更廣泛地應用到檔案傳輸和網路編程中。

但本節講述最基本的和流與 I/O 相關的功能。我們將通過一個個例子來學習這些功能。

讀取控制台輸入

Java 的控制台輸入由 System.in 完成。

為了獲得一個綁定到控制台的字元流,你可以把 System.in 封裝在一個 BufferedReader 對象中來建立一個字元流。

下面是建立 BufferedReader 的基本文法:

package object.inputSystem;import java.io.BufferedReader;import java.io.IOException;import java.io.InputStreamReader;public class Systemin {    public static void main(String[] args) throws IOException {        BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(System.in));    }}

BufferedReader 對象建立後,我們便可以使用 read() 方法從控制台讀取一個字元,或者用 readLine() 方法讀取一個字串。

從控制台讀取多字元輸入

從 BufferedReader 對象讀取一個字元要使用 read() 方法,它的文法如下:

int read( ) throws IOException

每次調用 read() 方法,它從輸入資料流讀取一個字元並把該字元作為整數值返回。 當流結束的時候返回 -1。該方法拋出 IOException。

Class : Tt

package object.inputSystem;import java.io.BufferedReader;import java.io.IOException;import java.io.InputStreamReader;public class Systemin {    public static void main(String[] args) throws IOException {        BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(System.in));        int read = bufferedReader.read();        System.out.println(read);    }}

Console :

A65

Class : BRRead

package object.inputSystem;import java.io.BufferedReader;import java.io.IOException;import java.io.InputStreamReader;public class BRRead {    public static void main(String[] args) throws IOException {        BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(System.in));        int c = -1;        while((c = bufferedReader.read()) != -1){            System.out.println((char)c);            if((char)c == ‘q‘)                break;        }    }}

Console : 

limelimeqq
從控制台讀取字串

從標準輸入讀取一個字串需要使用 BufferedReader 的 readLine() 方法。

它的一般格式是:

String readLine( ) throws IOException

Class : Tt

package object.inputSystem;import java.io.BufferedReader;import java.io.IOException;import java.io.InputStreamReader;public class Systemin {    public static void main(String[] args) throws IOException {        BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(System.in));        String read = bufferedReader.readLine();        System.out.println(read);    }}

Console : 

ABCDABCD

Class : BRReadLines

package object.inputSystem;import java.io.BufferedReader;import java.io.IOException;import java.io.InputStreamReader;public class BRReadLines {    public static void main(String[] args) throws IOException {        BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(System.in));        String readLine = "";        while(!(readLine = bufferedReader.readLine()).equals("end")){            System.out.println(readLine);        }    }}

Console : 

limelimeOracleOracleend

JDK 5 後的版本我們也可以使用 Java Scanner 類來擷取控制台的輸入。

控制台輸出

在此前已經介紹過,控制台的輸出由 print( ) 和 println() 完成。這些方法都由類 PrintStream 定義,System.out 是該類對象的一個引用。

PrintStream 繼承了 OutputStream類,並且實現了方法 write()。這樣,write() 也可以用來往控制台寫操作。

PrintStream 定義 write() 的最簡單格式如下所示:

void write(int byteval)

該方法將 byteval 的低八位位元組寫到流中。

Class : WriteDemo

package object.outputSystem;public class WriteDemo {    public static void main(String[] args) {//        A = 65 = B0100 0001        int b = ‘A‘;        System.out.write(b);        System.out.write(‘\n‘);        //        0x41 = B0100 0001        byte bt = (byte)0x41;        System.out.write(bt);        System.out.write(‘\n‘);        //        321 = B0001 0100 0001        int bigger = 321;        System.out.write(bigger);        System.out.write(‘\n‘);    }}

Console : 

AAA

注意:write() 方法不經常使用,因為 print() 和 println() 方法用起來更為方便。

讀寫檔案

如前所述,一個流被定義為一個資料序列。輸入資料流用於從源讀取資料,輸出資料流用於向目標寫資料。

是一個描述輸入資料流和輸出資料流的類層次圖。

TXT : 

Object     :InputStream         :FileInputStream    :OutputStream        :FileOutputStream-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --            :ByteArrayInputStream    :ByteArrayOutputStream-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --        :FilterInputStream        :BufferedInputStream        :DataInputStream        :PushbackInputStream    :FilterOutputStream        :BufferedOutputStream        :DataOutputStream        :PrintStream    -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --    :StringBufferInputStream    :SequenceInputStream

兩個重要的流是 FileInputStream 和 FileOutputStream:

FileInputStream

該流用於從檔案讀取資料,它的對象可以用關鍵字 new 來建立。

有多種構造方法可用來建立對象。

可以使用字串類型的檔案名稱來建立一個輸入資料流對象來讀取檔案:

InputStream f = new FileInputStream("F:/java/hello");

也可以使用一個檔案對象來建立一個輸入資料流對象來讀取檔案。我們首先得使用 File() 方法來建立一個檔案對象:

File f = new File("F:/java/hello");InputStream f = new FileInputStream(f);

建立了InputStream對象,就可以使用下面的方法來讀取流或者進行其他的流操作。

  ⊙ public void close() throws IOException{}  : 關閉此檔案輸入資料流並釋放與此流有關的所有系統資源。拋出IOException異常。

  ⊙ protected void finalize()throws IOException {}  : 這個方法清除與該檔案的串連。確保在不再引用檔案輸入資料流時調用其 close 方法。拋出IOException異常。

  ⊙ public int read(int r)throws IOException{}  : 這個方法從 InputStream 對象讀取指定位元組的資料。返回為整數值。返回下一位元組資料,如果已經到結尾則返回-1。

  ⊙ public int read(byte[] r) throws IOException{}  : 這個方法從輸入資料流讀取r.length長度的位元組。返回讀取的位元組數。如果是檔案結尾則返回-1。

  ⊙ public int available() throws IOException{}  :返回下一次對此輸入資料流調用的方法可以不受阻塞地從此輸入資料流讀取的位元組數。返回一個整數值。

除了 InputStream 外,還有一些其他的輸入資料流,更多的細節參考下面連結:

  • ByteArrayInputStream
  • DataInputStream
FileOutputStream

該類用來建立一個檔案並向檔案中寫資料。

如果該流在開啟檔案進行輸出前,目標檔案不存在,那麼該流會建立該檔案。

有兩個構造方法可以用來建立 FileOutputStream 對象。

使用字串類型的檔案名稱來建立一個輸出資料流對象:

OutputStream f = new FileOutputStream("F:/java/hello")

也可以使用一個檔案對象來建立一個輸出資料流來寫檔案。我們首先得使用File()方法來建立一個檔案對象:

File f = new File("F:/java/hello");OutputStream f = new FileOutputStream(f);

建立OutputStream 對象完成後,就可以使用下面的方法來寫入流或者進行其他的流操作。

  ⊙ public void close() throws IOException{}  :關閉此檔案輸入資料流並釋放與此流有關的所有系統資源。拋出IOException異常。

  ⊙ protected void finalize()throws IOException {}  : 這個方法清除與該檔案的串連。確保在不再引用檔案輸入資料流時調用其 close 方法。拋出IOException異常。

  ⊙ protected void finalize()throws IOException {}  : 這個方法清除與該檔案的串連。確保在不再引用檔案輸入資料流時調用其 close 方法。拋出IOException異常。

  ⊙ public void write(byte[] w)  : 把指定數組中w.length長度的位元組寫到OutputStream中。

除了OutputStream外,還有一些其他的輸出資料流,更多的細節參考下面連結:

  • ByteArrayOutputStream
  • DataOutputStream

Class : FileStreamTest

package object.Stream;import java.io.FileInputStream;import java.io.FileOutputStream;import java.io.IOException;public class FileStreamTest {    public static void main(String[] args) throws IOException {        byte[] bWrite = { 11, 21, 3, 40, 5 };        FileOutputStream fileOutputStream = new FileOutputStream("Tt.txt");        for(int i = 0;i < bWrite.length;i++){            fileOutputStream.write(bWrite[i]);        }        fileOutputStream.close();                // -- -- -- -- -- -- -- -- --        FileInputStream fileInputStream = new FileInputStream("Tt.txt");        int available = fileInputStream.available();        for(int i = 0;i < available;i++){            System.out.print((char)fileInputStream.read() + " ");        }        fileInputStream.close();    }}

Console : 

Result : 

以上代碼由於是二進位寫入,可能存在亂碼,你可以使用以下代碼執行個體來解決亂碼問題:

Class : FileStreamReaderWriter

package object.Stream;import java.io.FileInputStream;import java.io.FileOutputStream;import java.io.IOException;import java.io.InputStreamReader;import java.io.OutputStreamWriter;public class FileStreamReaderWriter {    public static void main(String[] args) throws IOException {        FileOutputStream fileOutputStream = new FileOutputStream("Tt.txt");        // 構建OutputStreamWriter對象,參數可以指定編碼,預設為作業系統預設編碼,windows上是gbk        OutputStreamWriter outputStreamWriter = new OutputStreamWriter(fileOutputStream, "UTF-8");        // 寫入到緩衝區        outputStreamWriter.append("中文輸入:").append("\r\n")                .append("猶如巡行和匯演\n你眼光只接觸我側面\n沉迷神情亂閃\n你所知的我其實是那面\n你清楚我嗎你懂得我嗎?\n").append("lime");        // 重新整理緩衝沖,寫入到檔案,如果下面已經沒有寫入的內容了,直接close也會寫入        outputStreamWriter.flush();        outputStreamWriter.append("Can you blow my whistle baby, whistle baby?");        // 關閉寫入流,同時會把緩衝區內容寫入檔案,所以上面的flush可以注釋掉        outputStreamWriter.close();        // 關閉輸出資料流,釋放系統資源        fileOutputStream.close();        // -- -- -- -- -- -- -- -- -- -- -- -- -- -- --        FileInputStream fileInputStream = new FileInputStream("Tt.txt");//        構建InputStreamReader對象,編碼與寫入相同        InputStreamReader inputStreamReader = new InputStreamReader(fileInputStream,"UTF-8");        StringBuffer stringBuffer = new StringBuffer();//        ready是查看流是否已經準備好被讀,是一個非阻塞的方法,所以會立刻返回。        while(!inputStreamReader.ready()){            System.out.println("not ready");        }        while(inputStreamReader.ready()){            stringBuffer.append((char)inputStreamReader.read());        }        System.out.println(stringBuffer.toString());        fileInputStream.close();        inputStreamReader.close();    }}
檔案和I/O

還有一些關於檔案和I/O的類,我們也需要知道:

  • File Class(類)
  • FileReader Class(類)
  • FileWriter Class(類)
Java中的目錄建立目錄:

File類中有兩個方法可以用來建立檔案夾:

  • mkdir( )方法建立一個檔案夾,成功則返回true,失敗則返回false。失敗表明File對象指定的路徑已經存在,或者由於整個路徑還不存在,該檔案夾不能被建立。
  • mkdirs()方法建立一個檔案夾和它的所有父資料夾。

 

啦啦啦

啦啦啦

 

啦啦啦

啦啦啦

啦啦啦

啦啦啦

Java 流(Stream)、檔案(File)和IO

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.