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

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