ファイルをバイト配列に変換する方法
Javaの場合:import java.nio.file.Files; import java.nio.file.Path; try { Path filePath = Path.of("ファイルのパス"); byte[] fileBytes = Files.readAllBytes(filePath); // ファイルのバイト配列を使用して何かを行う } catch (IOException e) { e.printStackTrace(); }>>More