Java ByteArrayInputStream 類
java bytearrayinputstream 類
bytearrayinputstream 字節(jié)數(shù)組輸入流在內(nèi)存中創(chuàng)建一個字節(jié)數(shù)組緩沖區(qū),從輸入流讀取的數(shù)據(jù)保存在該字節(jié)數(shù)組緩沖區(qū)中。
1. bytearrayinputstream 創(chuàng)建方式
創(chuàng)建字節(jié)數(shù)組輸入流對象有以下幾種方式。
接收字節(jié)數(shù)組作為參數(shù)創(chuàng)建:
bytearrayinputstream barray = new bytearrayinputstream(byte [] a);
另一種創(chuàng)建方式是接收一個字節(jié)數(shù)組,和兩個整形變量 off、len,off表示第一個讀取的字節(jié),len表示讀取字節(jié)的長度。
bytearrayinputstream barray = new bytearrayinputstream(byte []a, int off, int len)
2. bytearrayinputstream 操作方法
成功創(chuàng)建字節(jié)數(shù)組輸入流對象后,可以參見以下列表中的方法,對流進行讀操作或其他操作。
序號 | 方法描述 |
---|---|
1 | public int read() 從此輸入流中讀取下一個數(shù)據(jù)字節(jié)。 |
2 | public int read(byte[] r, int off, int len) 將最多 len 個數(shù)據(jù)字節(jié)從此輸入流讀入字節(jié)數(shù)組。 |
3 | public int available() 返回可不發(fā)生阻塞地從此輸入流讀取的字節(jié)數(shù)。 |
4 | public void mark(int read) 設置流中的當前標記位置。 |
5 | public long skip(long n) 從此輸入流中跳過 n 個輸入字節(jié)。 |
3. bytearrayinputstream 范例
下面的例子演示了bytearrayinputstream 和 bytearrayoutputstream的使用:
import java.io.*; public class bytestreamtest { public static void main(string args[])throws ioexception { bytearrayoutputstream boutput = new bytearrayoutputstream(12); while( boutput.size()!= 10 ) { // 獲取用戶輸入值 boutput.write(system.in.read()); } byte b [] = boutput.tobytearray(); system.out.println("print the content"); for(int x= 0 ; x < b.length; x++) { // 打印字符 system.out.print((char)b[x] + " "); } system.out.println(" "); int c; bytearrayinputstream binput = new bytearrayinputstream(b); system.out.println("converting characters to upper case " ); for(int y = 0 ; y < 1; y++ ) { while(( c= binput.read())!= -1) { system.out.println(character.touppercase((char)c)); } binput.reset(); } } }
以上實例編譯運行結(jié)果如下:
asdfghjkly print the content a s d f g h j k l y converting characters to upper case a s d f g h j k l y