位置:首頁 > Java技術 > Java.io包 > Java.io.DataInputStream.read()方法實例

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