Java ByteArrayOutputStream 類(lèi)
java bytearrayoutputstream 類(lèi)
bytearrayoutputstream 字節(jié)數(shù)組輸出流在內(nèi)存中創(chuàng)建一個(gè)字節(jié)數(shù)組緩沖區(qū),所有發(fā)送到輸出流的數(shù)據(jù)保存在該字節(jié)數(shù)組緩沖區(qū)中。創(chuàng)建字節(jié)數(shù)組輸出流對(duì)象有以下幾種方式。
1. bytearrayoutputstream 創(chuàng)建方式
下面的構(gòu)造方法創(chuàng)建一個(gè)32字節(jié)(默認(rèn)大小)的緩沖區(qū)。
outputstream bout = new bytearrayoutputstream();
另一個(gè)構(gòu)造方法創(chuàng)建一個(gè)大小為 a 字節(jié)的緩沖區(qū)。
outputstream bout = new bytearrayoutputstream(int a)
2. bytearrayoutputstream 操作方法
成功創(chuàng)建字節(jié)數(shù)組輸出流對(duì)象后,可以參見(jiàn)以下列表中的方法,對(duì)流進(jìn)行寫(xiě)操作或其他操作。
序號(hào) | 方法描述 |
---|---|
1 | public void reset() 將此字節(jié)數(shù)組輸出流的 count 字段重置為零,從而丟棄輸出流中目前已累積的所有數(shù)據(jù)輸出。 |
2 | public byte[] tobytearray() 創(chuàng)建一個(gè)新分配的字節(jié)數(shù)組。數(shù)組的大小和當(dāng)前輸出流的大小,內(nèi)容是當(dāng)前輸出流的拷貝。 |
3 | public string tostring() 將緩沖區(qū)的內(nèi)容轉(zhuǎn)換為字符串,根據(jù)平臺(tái)的默認(rèn)字符編碼將字節(jié)轉(zhuǎn)換成字符。 |
4 | public void write(int w) 將指定的字節(jié)寫(xiě)入此字節(jié)數(shù)組輸出流。 |
5 | public void write(byte []b, int off, int len) 將指定字節(jié)數(shù)組中從偏移量 off 開(kāi)始的 len 個(gè)字節(jié)寫(xiě)入此字節(jié)數(shù)組輸出流。 |
6 | public void writeto(outputstream outst) 將此字節(jié)數(shù)組輸出流的全部?jī)?nèi)容寫(xiě)入到指定的輸出流參數(shù)中。 |
3. bytearrayoutputstream 范例
下面的例子演示了 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 ) { // 獲取用戶(hù)輸入 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(); } } }
以上實(shí)例編譯運(yùn)行結(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