Here you can find the source of readFile(File file)
public static byte[] readFile(File file) throws IOException
//package com.java2s; //License from project: Apache License import java.io.File; import java.io.FileInputStream; import java.io.IOException; public class Main { public static byte[] readFile(File file) throws IOException { int length = (int) file.length(); FileInputStream fis = new FileInputStream(file); byte[] result = new byte[length]; int pos = 0; while (pos < length) { pos += fis.read(result, pos, length - pos); }/*from w ww .j a va 2 s . co m*/ fis.close(); return result; } }