Java - DataInputStream readByte() 方法



描述

Java DataInputStream readByte() 方法读取并返回单个输入字节。该字节是范围在 -128 到 127 之间的有符号值。

声明

以下是 java.io.DataInputStream.readByte() 方法的声明:

public final byte readByte()

参数

返回值

读取的字节值。

异常

  • IOException - 如果流已关闭且包含的输入流不支持关闭后读取,或发生其他 I/O 错误。

  • EOFException - 如果输入流已到达结尾。

示例 1

以下示例演示了 Java DataInputStream readByte() 方法的用法。我们创建了 InputStream 和 DataInputStream 引用,然后使用 ByteArrayInputStream(使用字节数组填充)和 DataInputStream 对象初始化它们。为了初始化 DataInputStream(),我们需要 ByteArrayInputStream 对象。创建对象后,我们将使用 available() 方法检查 DataInputStream 是否有内容。然后使用 readByte() 方法读取字节并将流指针移动到下一个字节。

import java.io.ByteArrayInputStream;
import java.io.DataInputStream;
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;
      byte[] buf = {65, 0, 0, 68, 69};
      
      try {
         // create new byte array input stream
         is = new ByteArrayInputStream(buf);
         
         // create data input stream
         dis = new DataInputStream(is);
         
         // readByte till the data available to read
         while( dis.available() >0) {
            System.out.println(dis.readByte());
         }
         
      } 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();
      }   
   }
}

输出

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

65
0
0
68
69

示例 2

以下示例演示了 Java DataInputStream readByte() 方法的用法。我们创建了 InputStream 和 DataInputStream 引用,然后使用 ByteArrayInputStream(使用字节数组填充)和 DataInputStream 对象初始化它们。为了初始化 DataInputStream(),我们需要 ByteArrayInputStream 对象。创建对象后,我们将使用 available() 方法检查 DataInputStream 是否有内容。现在,作为一个特例,我们将关闭流,然后使用 readByte() 方法读取字节,看看此方法是否抛出异常。结果,我们可以看到 readByte() 忽略 close() 方法调用,因为底层输入流支持关闭后读取。

import java.io.ByteArrayInputStream;
import java.io.DataInputStream;
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;
      byte[] buf = {65, 0, 0, 68, 69};
      
      try {
         // create new byte array input stream
         is = new ByteArrayInputStream(buf);
         
         // create data input stream
         dis = new DataInputStream(is);
		 
         // close the stream before reading.
		 is.close();
         dis.close();
         
         // readByte till the data available to read
         while( dis.available() >0) {
            System.out.println(dis.readByte());
         }
         
      } 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();
      }   
   }
}

输出

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

65
0
0
68
69

示例 3

以下示例演示了 Java DataInputStream readByte() 方法的用法。我们创建了 InputStream 和 DataInputStream 引用,然后使用 ByteArrayInputStream(使用字节数组填充)和 DataInputStream 对象初始化它们。为了初始化 DataInputStream(),我们需要 ByteArrayInputStream 对象。创建对象后,我们将使用 available() 方法检查 DataInputStream 是否有内容。然后使用 readByte() 方法读取字节并将流指针移动到下一个字节。现在,作为一个特例,我们将使用 readByte() 方法在读取所有字节后读取字节。结果,我们可以看到 readByte() 抛出 EOFException。

import java.io.ByteArrayInputStream;
import java.io.DataInputStream;
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;
      byte[] buf = {65, 0, 0, 68, 69};
      
      try {
         // create new byte array input stream
         is = new ByteArrayInputStream(buf);
         
         // create data input stream
         dis = new DataInputStream(is);
         
         // readByte till the data available to read
         while( dis.available() >0) {
            System.out.println(dis.readByte());
         }
         System.out.println(dis.readByte());
      } 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();
      }   
   }
}

输出

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

65
0
0
68
69
java.io.EOFException
	at java.base/java.io.DataInputStream.readByte(DataInputStream.java:272)
	at DataInputStreamDemo.main(DataInputStreamDemo.java:23)
java_files_io.htm
广告