位置:首頁 > Java技術 > Java.io包 > java.io.SequenceInputStream.read(byte[] b,int off,int len)方法實例

java.io.SequenceInputStream.read(byte[] b,int off,int len)方法實例

java.io.SequenceInputStream.read(byte[] b,int off,int len) 方法讀取最多len個從這個輸入流中數據的字節到字節數組。如果len不為零,則該方法阻塞,直到輸入最少1個字節是可用的;否則,不讀取任何字節並返回0。

聲明

以下是java.io.SequenceInputStream.read()方法的聲明

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

參數

  • b -- 被讀出緩衝器中的數據。

  • off -- 在數組b在其中寫入數據的起始位置的偏移。

  • b -- 讀出的最大字節數。

返回值

此方法返回讀取的字節數。

異常

  • NullPointerException -- 如果 b 為 null

  • IndexOutOfBoundsException -- 如果off為負,len為負,或len大於中b.length- off

  • IOException -- 如果發生I/O錯誤。

例子

下麵的示例演示java.io.SequenceInputStream.read()方法的用法。

package com.yiibai;

import java.io.*;

public class SequenceInputStreamDemo {

   public static void main(String[] args) {

      // create two  new strings with 5 characters each
      String s1 = "Hello";
      String s2 = "World";

      // create 2 input streams
      byte[] b1 = s1.getBytes();
      byte[] b2 = s2.getBytes();
      ByteArrayInputStream is1 = new ByteArrayInputStream(b1);
      ByteArrayInputStream is2 = new ByteArrayInputStream(b2);

      // create a new Sequence Input Stream
      SequenceInputStream sis = new SequenceInputStream(is1, is2);

      // create a new byte array
      byte arr[] = {'1', '2', '3', '4'};
      try {

         // read 3 chars and print the number of chars read
         System.out.print("" + sis.read(arr, 0, 3));

         // change line
         System.out.println();

         // close the streams
         sis.close();

      } catch (IOException ex) {
         ex.printStackTrace();
      }
   }
}

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

3