当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java DataInputStream readByte()用法及代码示例


Java中的DataInputStream类的readByte()方法用于读取和返回一个输入字节。该字节是一个从-128到+127范围内的有符号值。从容纳的输入流中读取此方法中的字节。

用法:

public final byte readByte()
                  throws IOException

指定者:该方法由DataInput接口的readByte()方法指定。

参数:此方法不接受任何参数。

返回值:此方法返回读取的字节值。它是一个有符号的8位字节。



异常:

  • EOFException-如果输入流结束,则抛出EOFException。
  • IOException-如果流关闭或发生其他一些I /O错误,则此方法将引发IOException。

以下示例程序旨在说明IO包中DataInputStream类中的readByte()方法:

程序1:

// Java program to illustrate 
// DataInputStream readByte() method 
import java.io.*; 
public class GFG { 
    public static void main(String[] args) 
        throws IOException 
    { 
  
        // Create byte array 
        byte[] b = { 10, 20, 30, 40, 50 }; 
  
        // Create byte array input stream 
        ByteArrayInputStream byteArrayInputStr 
            = new ByteArrayInputStream(b); 
  
        // Convert byte array input stream to 
        // DataInputStream 
        DataInputStream dataInputStr 
            = new DataInputStream( 
                byteArrayInputStr); 
  
        while (dataInputStr.available() > 0) { 
            // Print bytes 
            System.out.println( 
                dataInputStr.readByte()); 
        } 
    } 
}
输出:
10
20
30
40
50

程序2:

// Java program to illustrate 
// DataInputStream readByte() method 
import java.io.*; 
public class GFG { 
    public static void main(String[] args) 
        throws IOException 
    { 
  
        // Create byte array 
        byte[] b = { -20, -10, 0, 10, 20 }; 
  
        // Create byte array input stream 
        ByteArrayInputStream byteArrayInputStr 
            = new ByteArrayInputStream(b); 
  
        // Convert byte array input stream to 
        // DataInputStream 
        DataInputStream dataInputStr 
            = new DataInputStream( 
                byteArrayInputStr); 
  
        while (dataInputStr.available() > 0) { 
            // Print bytes 
            System.out.println( 
                dataInputStr.readByte()); 
        } 
    } 
}
输出:
-20
-10
0
10
20

参考文献:
https://docs.oracle.com/javase/10/docs/api/java/io/DataInputStream.html#readByte()




相关用法


注:本文由纯净天空筛选整理自pp_pankaj大神的英文原创作品 DataInputStream readByte() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。