黄色电影一区二区,韩国少妇自慰A片免费看,精品人妻少妇一级毛片免费蜜桃AV按摩师 ,超碰 香蕉

Java ByteArrayOutputStream 類

java bytearrayoutputstream 類

bytearrayoutputstream 字節(jié)數(shù)組輸出流在內(nèi)存中創(chuàng)建一個字節(jié)數(shù)組緩沖區(qū),所有發(fā)送到輸出流的數(shù)據(jù)保存在該字節(jié)數(shù)組緩沖區(qū)中。創(chuàng)建字節(jié)數(shù)組輸出流對象有以下幾種方式。

 

1. bytearrayoutputstream 創(chuàng)建方式

下面的構(gòu)造方法創(chuàng)建一個32字節(jié)(默認大小)的緩沖區(qū)。

outputstream bout = new bytearrayoutputstream();

另一個構(gòu)造方法創(chuàng)建一個大小為 a 字節(jié)的緩沖區(qū)。

outputstream bout = new bytearrayoutputstream(int a)

 

2. bytearrayoutputstream 操作方法

成功創(chuàng)建字節(jié)數(shù)組輸出流對象后,可以參見以下列表中的方法,對流進行寫操作或其他操作。

序號 方法描述
1 public void reset()
將此字節(jié)數(shù)組輸出流的 count 字段重置為零,從而丟棄輸出流中目前已累積的所有數(shù)據(jù)輸出。
2 public byte[] tobytearray()
創(chuàng)建一個新分配的字節(jié)數(shù)組。數(shù)組的大小和當前輸出流的大小,內(nèi)容是當前輸出流的拷貝。
3 public string tostring()
將緩沖區(qū)的內(nèi)容轉(zhuǎn)換為字符串,根據(jù)平臺的默認字符編碼將字節(jié)轉(zhuǎn)換成字符。
4 public void write(int w)
 將指定的字節(jié)寫入此字節(jié)數(shù)組輸出流。
5 public void write(byte []b, int off, int len)
 將指定字節(jié)數(shù)組中從偏移量 off 開始的 len 個字節(jié)寫入此字節(jié)數(shù)組輸出流。
6 public void writeto(outputstream outst)
將此字節(jié)數(shù)組輸出流的全部內(nèi)容寫入到指定的輸出流參數(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 ) {
         // 獲取用戶輸入
         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

java 文件讀寫流

下一節(jié):什么是 javabean

java語言 教程

相關(guān)文章