下面的例子演示如何使用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
- package org.example.io;
-
- import java.io.BufferedInputStream;
- import java.io.BufferedOutputStream;
- import java.io.File;
- import java.io.FileInputStream;
- import java.io.FileOutputStream;
-
- public class TestBufferedString {
-
- public static void main(String[] args) throws Exception {
- // 指定要讀取文件的緩衝輸入字節流
- BufferedInputStream in = new BufferedInputStream(new FileInputStream("F:\\test.jpg"));
- File file = new File("E:\\test.jpg");
- if (file != null) {
- file.createNewFile();
- }
- // 指定要寫入文件的緩衝輸出字節流
- BufferedOutputStream out = new BufferedOutputStream(new FileOutputStream(file));
- byte[] bb = new byte[1024];// 用來存儲每次讀取到的字節數組
- int n;// 每次讀取到的字節數組的長度
- while ((n = in.read(bb)) != -1) {
- out.write(bb, 0, n);// 寫入到輸出流
- }
- out.close();// 關閉流
- in.close();
- }
-
- }