Java I/O How to - Read byte array from file








Question

We would like to know how to read byte array from file.

Answer

//from  w w w .j a v a2  s  .  c  o  m
import java.io.DataInputStream;
import java.io.FileInputStream;

public class Main {

  public static void main(String[] args) throws Exception {
    FileInputStream fin = new FileInputStream("C:/Array.txt");
    DataInputStream din = new DataInputStream(fin);

    byte b[] = new byte[10];
    din.read(b);
    din.close();
  }
}