Home >Java >javaTutorial >How to Convert a Java File to a byte[] Array?

How to Convert a Java File to a byte[] Array?

Barbara Streisand
Barbara StreisandOriginal
2024-12-21 09:34:10871browse

How to Convert a Java File to a byte[] Array?

File to byte in Java[]

Question: How to convert java.io.File to byte []?

Answer:

Starting from JDK 7 you can use Files.readAllBytes(Path).

Example:

import java.io.File;
import java.nio.file.Files;

File file;
// ...(file is initialised)...
byte[] fileContent = Files.readAllBytes(file.toPath());

The above is the detailed content of How to Convert a Java File to a byte[] Array?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn