精品熟女碰碰人人a久久,多姿,欧美欧美a v日韩中文字幕,日本福利片秋霞国产午夜,欧美成人禁片在线观看

Java ByteArrayInputStream 類

java bytearrayinputstream 類

java 文件讀寫流

bytearrayinputstream 字節數組輸入流在內存中創建一個字節數組緩沖區,從輸入流讀取的數據保存在該字節數組緩沖區中。

 

1. bytearrayinputstream 創建方式

創建字節數組輸入流對象有以下幾種方式。

接收字節數組作為參數創建:

bytearrayinputstream barray = new bytearrayinputstream(byte [] a);

另一種創建方式是接收一個字節數組,和兩個整形變量 off、len,off表示第一個讀取的字節,len表示讀取字節的長度。

bytearrayinputstream barray = new bytearrayinputstream(byte []a, int off, int len)

 

2. bytearrayinputstream 操作方法

成功創建字節數組輸入流對象后,可以參見以下列表中的方法,對流進行讀操作或其他操作。

序號 方法描述
1 public int read()       
從此輸入流中讀取下一個數據字節。
2 public int read(byte[] r, int off, int len)
將最多 len 個數據字節從此輸入流讀入字節數組。
3 public int available()
返回可不發生阻塞地從此輸入流讀取的字節數。
4 public void mark(int read)
設置流中的當前標記位置。
5 public long skip(long n)
從此輸入流中跳過 n 個輸入字節。

 

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();
      }
   }
}

以上實例編譯運行結果如下:

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 文件讀寫流

下一節:java datainputstream 類

java語言 教程

相關文章