Java.io.DataInputStream.readFully()方法实例
java.io.DataInputStream.readFully(byte[] b) 方法读取输入流中的字节,并分配该等到缓冲区数组b中。
它会阻止,直到下面条件之一发生:
- b.length 个的字节可输入数据。
- 文件结束检测。
- 如果发生任何I/ O错误。
声明
以下是java.io.DataInputStream.readFully(byte[] b) 方法的声明:
public final void readFully(byte[] b)
参数
-
NA
返回值
此方法不返回任何值。
异常
-
IOException -- 如果发生任何I/O错误,或者该流已关闭。
-
EOFException -- 如果此输入流之前到达末尾。
例子
下面的例子显示java.io.DataInputStream.readFully(byte[] b) 方法的用法。
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); // for each byte in the buffer for (byte b:buf) { // convert byte to char char 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!
让我们来编译和运行上面的程序,这将产生以下结果:
Hello World!