Java - DataInputStream read() 方法



描述

Java 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。

示例 1

以下示例演示了 Java DataInputStream read(byte[] b) 方法的使用。我们创建了 InputStream 和 DataInputStream 引用,然后使用 FileInputStream 和 DataInputStream 对象对其进行了初始化。为了初始化 DataInputStream(),我们需要 FileInputStream 对象。创建对象后,我们使用 available() 方法检查 inputStream 是否有内容。然后创建一个包含可用字节的字节数组,然后在 DataInputStream read() 方法中使用该数组,该方法将填充字节数组。然后迭代并打印此字节数组。

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("F:\\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();
      }   
   }
}

假设我们有一个文本文件 F:/test.txt,其内容如下。此文件将用作我们示例程序的输入:

ABCDEFGH

输出

让我们编译并运行上述程序,这将产生以下结果:

A B C D E F G H 

示例 2

以下示例演示了 Java DataInputStream read(byte[] b) 方法的使用。我们创建了 InputStream 和 DataInputStream 引用,然后使用 FileInputStream 和 DataInputStream 对象对其进行了初始化。为了初始化 DataInputStream(),我们需要 FileInputStream 对象。在此示例中,我们使用了一个不存在的文件,并查看 read() 方法是否抛出异常。

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("F:\\test1.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();
      }   
   }
}

假设我们没有文本文件 F:/test1.txt。此文件将用作我们示例程序的输入:

输出

让我们编译并运行上述程序,这将产生以下结果:

java.io.FileNotFoundException: F:\test1.txt (The system cannot find the file specified)
	at java.base/java.io.FileInputStream.open0(Native Method)
	at java.base/java.io.FileInputStream.open(FileInputStream.java:219)
	at java.base/java.io.FileInputStream.<init&t;(FileInputStream.java:157)
	at java.base/java.io.FileInputStream.<init&t;(FileInputStream.java:112)
	at DataInputStreamDemo.main(DataInputStreamDemo.java:13)

示例 3

以下示例演示了 Java DataInputStream read(byte[] b) 方法的使用。我们创建了 InputStream 和 DataInputStream 引用,然后使用 FileInputStream 和 DataInputStream 对象对其进行了初始化。为了初始化 DataInputStream(),我们需要 FileInputStream 对象。在此示例中,我们使用了一个空文件,并查看 read() 方法是否抛出异常或能够成功读取空文件。

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("F:\\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();
      }   
   }
}

假设我们有一个文本文件 F:/test.txt,其内容为空。此文件将用作我们示例程序的输入:


输出

让我们编译并运行上述程序,这将产生以下结果(空内容):


java_files_io.htm
广告