Java ByteArrayInputStream類

2018-09-25 13:15 更新

Java ByteArrayInputStream類

字節(jié)數(shù)組輸入流在內(nèi)存中創(chuàng)建一個(gè)字節(jié)數(shù)組緩沖區(qū),從輸入流讀取的數(shù)據(jù)保存在該字節(jié)數(shù)組緩沖區(qū)中。創(chuàng)建字節(jié)數(shù)組輸入流對象有以下幾種方式。

接收字節(jié)數(shù)組作為參數(shù)創(chuàng)建:

ByteArrayInputStream bArray = new ByteArrayInputStream(byte [] a);

另一種創(chuàng)建方式是接收一個(gè)字節(jié)數(shù)組,和兩個(gè)整形變量 off、len,off表示第一個(gè)讀取的字節(jié),len表示讀取字節(jié)的長度。

ByteArrayInputStream bArray = new ByteArrayInputStream(byte []a, 
                                                       int off, 
                                                       int len)

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

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

實(shí)例

下面的例子演示了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();       }    } } 

以上實(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
以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號