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


java.io.DataInputStream.read(byte[] b, int off, int len) 方法從包含的輸入流中讀取len個位元組並將它們分配在緩衝b起始於b[off]。該方法被阻塞,直到輸入資料可用,則丟擲異常或檢測到檔案的末尾。

宣告

以下是java.io.DataInputStream.read(byte[] b, int off, int len) 方法的宣告:

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

引數

  • b - byte[]到其中的資料是從輸入流中讀取。

  • off - 開始在偏移 b[].

  • len -讀出的最大位元組數。

返回值

總讀取位元組數,否則如果流已經達到了末尾返回-1。

異常

  • IOException -- 如果發生I/O錯誤,第一個位元組不能被讀取或close()在此方法前被呼叫。

  • NullPointerException -- 如果b的值為null.

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

例子

下面的例子顯示java.io.DataInputStream.read(byte[] b, int off, int len) 方法的用法。

package com.yiibai;

import java.io.DataInputStream;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;

public class DataInputStreamDemo {
   public static void main(String[] args) throws IOException {
      
      InputStream is = null;
      DataInputStream dis = null;
      
      try{
         // create input stream from file input stream
         is = new FileInputStream("c:\test.txt");
         
         // create data input stream
         dis = new DataInputStream(is);
         
         // count the available bytes form the input stream
         int count = is.available();
         
         // create buffer
         byte[] bs = new byte[count];
         
         // read len data into buffer starting at off
         dis.read(bs, 4, 3);
         
         // for each byte in the buffer
         for (byte b:bs)
         {
            // convert byte into character
            char c = (char)b;
            
            // empty byte as char '0'
            if(b ==0)
               c='0';
            
            // print the character
            System.out.print(c);
         }
      }catch(Exception e){
         // if any I/O error occurs
         e.printStackTrace();
      }finally{
         
         // releases any associated system files with this stream
         if(is!=null)
            is.close();
         if(dis!=null)
            dis.close();
      }   
   }
}

假設我們有一個文字檔案c:/ test.txt,它具有以下內容。這檔案將被用作輸入在我們範例程式:

ABCDEFGH

讓我們來編譯和執行上面的程式,這將產生以下結果:

0000ABC0