BufferedInputStream使用詳解

下面的例子演示如何使用BufferedInputStream類讀取文本文件內容。

首先須要聲明一個byte數組做爲buffer,而後循環將文本內容循環讀入到buffer中,並將buffer轉換爲字符串,打印到控制檯。

/**
*
* @author outofmemory.cn
*/
public class Main {

    /**
     * 從文件中讀取文本
*/
public void readFromFile(String filename) {

        BufferedInputStream bufferedInput = null;
        byte[] buffer = new byte[1024];

        try {

            //建立BufferedInputStream 對象
bufferedInput = new BufferedInputStream(new FileInputStream(filename));

            int bytesRead = 0;

            //從文件中按字節讀取內容,到文件尾部時read方法將返回-1
            while ((bytesRead = bufferedInput.read(buffer)) != -1) {

                //將讀取的字節轉爲字符串對象
String chunk = new String(buffer, 0, bytesRead);
                System.out.print(chunk);
            }

        } catch (FileNotFoundException ex) {
            ex.printStackTrace();
        } catch (IOException ex) {
            ex.printStackTrace();
        } finally {
            //關閉 BufferedInputStream
            try {
                if (bufferedInput != null)
                    bufferedInput.close();
            } catch (IOException ex) {
                ex.printStackTrace();
            }
        }
    }

    /**
     * @param args 命令行參數
*/
public static void main(String[] args) {
        new Main().readFromFile("myFile.txt");
    }
}

使用方法

  BufferedInputStream繼承於FilterInputStream,提供緩衝輸入流功能。緩衝輸入流相對於普通輸入流的優點是,它提供了一個緩衝數組,每次調用read方法的時候,它首先嚐試從緩衝區裏讀取數據,若讀取失敗(緩衝區無可讀數據),則選擇從物理數據源(譬如文件)讀取新數據(這裏會嘗試儘量讀取多的字節)放入到緩衝區中,最後再將緩衝區中的內容部分或所有返回給用戶.因爲從緩衝區裏讀取數據遠比直接從物理數據源(譬如文件)讀取速度快。java

方法介紹

  BufferedInputStream提供的API以下:數組

//構造方法 BufferedInputStream(InputStream in) BufferedInputStream(InputStream in, int size) //下一字節是否可讀 synchronized int available() //關閉 void close() //標記, readlimit爲mark後最多可讀取的字節數 synchronized void mark(int readlimit) //是否支持mark, true boolean markSupported() //讀取一個字節 synchronized int read() //讀取多個字節到b synchronized int read(byte[] b, int off, int len) //重置會mark位置 synchronized void reset() //跳過n個字節 synchronized long skip(long n)

 

使用示例

public void testBufferedInput() { try { /** * 創建輸入流 BufferedInputStream, 緩衝區大小爲8 * buffer.txt內容爲 * abcdefghij */ InputStream in = new BufferedInputStream(new FileInputStream(new File("buff.txt")), 8); /*從字節流中讀取5個字節*/ byte [] tmp = new byte[5]; in.read(tmp, 0, 5); System.out.println("字節流的前5個字節爲: " + new String(tmp)); /*標記測試*/ in.mark(6); /*讀取5個字節*/ in.read(tmp, 0, 5); System.out.println("字節流中第6到10個字節爲: " + new String(tmp)); /*reset*/ in.reset(); System.out.printf("reset後讀取的第一個字節爲: %c" , in.read()); } catch (Exception e) { e.printStackTrace(); } }

  運行結果以下:測試

字節流的前5個字節爲: abcde 字節流中第6到10個字節爲: fghij reset後讀取的第一個字節爲: f



使用BufferedInputStream和BufferedOuputStream讀寫圖片

 

使用方式和FileInputStrem和FileOutputStream基本一致:spa

 

[java]  view plain  copy
 
  1. package org.example.io;  
  2.   
  3. import java.io.BufferedInputStream;  
  4. import java.io.BufferedOutputStream;  
  5. import java.io.File;  
  6. import java.io.FileInputStream;  
  7. import java.io.FileOutputStream;  
  8.   
  9. public class TestBufferedString {  
  10.   
  11.     public static void main(String[] args) throws Exception {  
  12.         // 指定要讀取文件的緩衝輸入字節流  
  13.         BufferedInputStream in = new BufferedInputStream(new FileInputStream("F:\\test.jpg"));  
  14.         File file = new File("E:\\test.jpg");  
  15.         if (file != null) {  
  16.             file.createNewFile();  
  17.         }  
  18.         // 指定要寫入文件的緩衝輸出字節流  
  19.         BufferedOutputStream out = new BufferedOutputStream(new FileOutputStream(file));  
  20.         byte[] bb = new byte[1024];// 用來存儲每次讀取到的字節數組  
  21.         int n;// 每次讀取到的字節數組的長度  
  22.         while ((n = in.read(bb)) != -1) {  
  23.             out.write(bb, 0, n);// 寫入到輸出流  
  24.         }  
  25.         out.close();// 關閉流  
  26.         in.close();  
  27.     }  
  28.   
  29. }  
相關文章
相關標籤/搜索