java.io.DataInputStream.readFully(byte[] b) 方法從輸入流中讀取len個位元組。
它會阻止,直到下面條件之一發生:
以下是java.io.DataInputStream.readFully(byte[] b, int off, int len) 方法的宣告:
public final void readFully(byte[] b, int off, int len)
b - 目的緩衝區。
off - 資料的偏移量。
len - 要讀取的位元組數。
此方法不返回任何值。
IOException -- 如果發生任何I/O錯誤,或者該流已關閉。
EOFException -- 如果此輸入流之前到達末尾。
下面的例子顯示java.io.DataInputStream.readFully(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 file input stream is = new FileInputStream("c:\test.txt"); // create new data input stream dis = new DataInputStream(is); // available stream to be read int length = dis.available(); // create buffer byte[] buf = new byte[length]; // read the full data into the buffer dis.readFully(buf, 4, 5); // for each byte in the buffer for (byte b:buf) { char c = '0'; if(b!=0) c = (char)b; // prints character System.out.print(c); } }catch(Exception e){ // if any error occurs e.printStackTrace(); }finally{ // releases all system resources from the streams if(is!=null) is.close(); if(dis!=null) dis.close(); } } }
假設我們有一個文字檔案c:/ test.txt,它具有以下內容。這將檔案將被用作輸入我們的範例程式:
Hello World!
讓我們來編譯和執行上面的程式,這將產生以下結果:
0000Hello000