Java.io.DataInputStream.read()方法範例


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

宣告

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

public final int read(byte[] b)

引數

  • b -- 緩衝區陣列到其中的資料是從該流讀取。

返回值

流中的位元組總數,否則返回-1如果流已經到達了結尾部分。

異常

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

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

例子

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

package com.yiibai;

import java.io.DataInputStream;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
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 data into buffer
         dis.read(bs);
         
         // for each byte in the buffer
         for (byte b:bs)
         {
            // convert byte into character
            char c = (char)b;
            
            // 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

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

A B C D E F G H