位置:首页 > 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