Fichier Java Get Bytes

File file = new File("./myfile.txt");
byte[] fileContent = Files.readAllBytes(file.toPath());
JavaBeast