如何使用DataInputStream类的readByte方法从文件中读取字节原始值。
/** 时代Java公众号 提供 **/ import java.io.DataInputStream; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.IOException; public class Main { public static void main(String[] args) { String strFilePath = "C:/Folder/Byte.txt"; try { FileInputStream fin = new FileInputStream(strFilePath);/**来自 N o w J a v a . c o m**/ DataInputStream din = new DataInputStream(fin); byte b = din.readByte(); System.out.println("byte : " + b); din.close(); } catch(FileNotFoundException fe) { System.out.println(