JavaでFileをバイト配列に変換する

Java 7以上じゃないと使用できない.

public byte[] convert(File file) throws IOException {
    return Files.readAllBytes(file.toPath());
}