當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Java.io.ByteArrayInputStream.read()用法及代碼示例



描述

這個java.io.ByteArrayInputStream.read(byte[] b, int off, int len)方法從此輸入流中讀取 len 個字節的數據到一個字節數組中。 read() 方法不會阻塞。

聲明

以下是聲明java.io.ByteArrayInputStream.read(byte[] b, int off, int len)方法 -

public int read(byte[] b, int off, int len)

參數

  • b- 數據被讀入這個緩衝區

  • off− 從目標數組 b 開始的偏移量

  • len- 讀取的最大字節數

返回值

讀入緩衝區的字節數。如果流已到達結尾,則返回 -1。

異常

  • NullPointerException− 如果 b 為空。

  • IndexOutOfBoundsException− 如果 len 大於偏移後輸入流的長度,則 off 為負,或 len 為負。

示例

下麵的例子展示了 java.io.ByteArrayInputStream.read(byte[] b, int off, int len) 方法的用法。

package com.tutorialspoint;

import java.io.ByteArrayInputStream;
import java.io.IOException;

public class ByteArrayInputStreamDemo {
   public static void main(String[] args) throws IOException {
      byte[] buf = {65, 66, 67, 68, 69};
      ByteArrayInputStream bais = null;
      
      try {
         // create new byte array input stream
         bais = new ByteArrayInputStream(buf);
      
         // create buffer
         byte[] b = new byte[4];
         int num = bais.read(b, 2, 2);
         
         // number of bytes read
         System.out.println("Bytes read:"+num);
         
         // for each byte in a buffer
         for (byte s:b) {
         
            // covert byte to char
            char c = (char)s;
            
            // prints byte
            System.out.print(s);
            
            if(s == 0)
               
               // if byte is 0
               System.out.println(":Null");
            else
               
               // if byte is not 0
               System.out.println(":"+c);
         }
         
      } catch(Exception e) {
         // if I/O error occurs
         e.printStackTrace();
      } finally {
         if(bais!=null)
            bais.close();
      }   
   }
}

讓我們編譯並運行上麵的程序,這將產生以下結果 -

Bytes read:2
0:Null
0:Null
65:A
66:B

相關用法


注:本文由純淨天空篩選整理自 Java.io.ByteArrayInputStream.read() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。