從二進位制檔案中讀取
你可以在所有最新版本的 Java 中使用這段程式碼讀取二進位制檔案:
Version >= Java SE 1.4
File file = new File("path_to_the_file");
byte[] data = new byte[(int) file.length()];
DataInputStream stream = new DataInputStream(new FileInputStream(file));
stream.readFully(data);
stream.close();
如果你使用的是 Java 7 或更高版本,則使用 nio API
有一種更簡單的方法:
Version >= Java SE 7
Path path = Paths.get("path_to_the_file");
byte [] data = Files.readAllBytes(path);