int readInt void readFully(byte b, int off, int len) long readLong 描述 所述java.io.DataInputStream.readInt()方法读取四个输入字节并返回一个整数值。 声明 以下是java.io.DataInputStream.readInt()方法的声明 public final void readInt() 参数 NA 返回值 此方法读取四个字节并返回一个int值 异常 IOException − 如果发生任何I / O错误或流已关闭。 EOFException − 如果此输入流到达之前的结尾。 实例 以下示例显示了java.io.DataInputStream.readInt()方法的用法。 package com.tutorialspoint; import java.io.DataInputStream; import java.io.DataOutputStream; import java.io.FileInputStream; import java.io.FileOutputStream; 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; FileOutputStream fos = null; DataOutputStream dos = null; int[] i = {128,250,430,520,820}; try { // create file output stream fos = new FileOutputStream("c:\\test.txt"); // create data output stream dos = new DataOutputStream(fos); // for each int in int buffer for(int j:i) { // write int to data output stream dos.writeInt(j); } // force data to the underlying file output stream dos.flush(); // create file input stream is = new FileInputStream("c:\\test.txt"); // create new data input stream dis = new DataInputStream(is); // available stream to be read while(dis.available()>0) { // read four bytes from data input, return int int k = dis.readInt(); // print int System.out.print(k+" "); } } catch(Exception e) { // if any error occurs e.printStackTrace(); } finally { // releases all system resources from the streams if(is!=null) is.close(); if(dis!=null) dis.close(); if(fos!=null) fos.close(); if(dos!=null) dos.close(); } } } 让我们编译并运行上面的程序,这将产生以下结果 128 250 430 520 820 void readFully(byte b, int off, int len) long readLong