어떻게 변환합니까 java.io.File
A를 byte[]
?
어떻게 변환합니까 java.io.File
A를 byte[]
?
답변:
그것은 당신에게 가장 좋은 방법에 달려 있습니다. 생산성면에서는 휠을 재발 명하지 말고 Apache Commons를 사용하십시오. 어느 것이 여기에 있습니다 IOUtils.toByteArray(InputStream input)
.
File
에 byte[]
? Java6를 사용하고 있으므로 NIO 메소드를 사용할 수 없습니다. (
JDK 7 부터 사용할 수 있습니다 Files.readAllBytes(Path)
.
예:
import java.io.File;
import java.nio.file.Files;
File file;
// ...(file is initialised)...
byte[] fileContent = Files.readAllBytes(file.toPath());
JDK 7부터-하나의 라이너 :
byte[] array = Files.readAllBytes(Paths.get("/path/to/file"));
외부 의존성이 필요하지 않습니다.
import java.nio.file.Files;
그리고 import java.nio.file.Paths;
당신이 이미하지 않은 경우.
import java.io.RandomAccessFile;
RandomAccessFile f = new RandomAccessFile(fileName, "r");
byte[] b = new byte[(int)f.length()];
f.readFully(b);
Java 8에 대한 설명서 : http://docs.oracle.com/javase/8/docs/api/java/io/RandomAccessFile.html
기본적으로 메모리에서 읽어야합니다. 파일을 열고 배열을 할당 한 후 파일에서 배열로 내용을 읽습니다.
가장 간단한 방법은 다음과 유사합니다.
public byte[] read(File file) throws IOException, FileTooBigException {
if (file.length() > MAX_FILE_SIZE) {
throw new FileTooBigException(file);
}
ByteArrayOutputStream ous = null;
InputStream ios = null;
try {
byte[] buffer = new byte[4096];
ous = new ByteArrayOutputStream();
ios = new FileInputStream(file);
int read = 0;
while ((read = ios.read(buffer)) != -1) {
ous.write(buffer, 0, read);
}
}finally {
try {
if (ous != null)
ous.close();
} catch (IOException e) {
}
try {
if (ios != null)
ios.close();
} catch (IOException e) {
}
}
return ous.toByteArray();
}
파일 내용을 불필요하게 복사하는 경우가 있습니다 (실제로 데이터를 파일에서 buffer
,에서 buffer
으로 ByteArrayOutputStream
, ByteArrayOutputStream
실제 결과 배열로 세 번 복사 함 ).
또한 메모리에서 특정 크기의 파일 만 읽도록해야합니다 (일반적으로 응용 프로그램에 따라 다름) :-).
또한 IOException
함수 외부 를 처리해야 합니다.
다른 방법은 다음과 같습니다.
public byte[] read(File file) throws IOException, FileTooBigException {
if (file.length() > MAX_FILE_SIZE) {
throw new FileTooBigException(file);
}
byte[] buffer = new byte[(int) file.length()];
InputStream ios = null;
try {
ios = new FileInputStream(file);
if (ios.read(buffer) == -1) {
throw new IOException(
"EOF reached while trying to read the whole file");
}
} finally {
try {
if (ios != null)
ios.close();
} catch (IOException e) {
}
}
return buffer;
}
불필요한 복사는 없습니다.
FileTooBigException
사용자 지정 응용 프로그램 예외입니다. MAX_FILE_SIZE
상수는 어플리케이션 파라미터이다.
큰 파일의 경우 스트림 처리 알고리즘을 생각하거나 메모리 매핑을 사용해야합니다 (참조 java.nio
).
누군가가 말했듯이 Apache Commons File Utils 에는 원하는 것이있을 수 있습니다.
public static byte[] readFileToByteArray(File file) throws IOException
사용 예 ( Program.java
) :
import org.apache.commons.io.FileUtils;
public class Program {
public static void main(String[] args) throws IOException {
File file = new File(args[0]); // assume args[0] is the path to file
byte[] data = FileUtils.readFileToByteArray(file);
...
}
}
NIO API를 사용할 수도 있습니다. 총 파일 크기 (바이트)가 int에 맞는 한이 코드 로이 작업을 수행 할 수 있습니다.
File f = new File("c:\\wscp.script");
FileInputStream fin = null;
FileChannel ch = null;
try {
fin = new FileInputStream(f);
ch = fin.getChannel();
int size = (int) ch.size();
MappedByteBuffer buf = ch.map(MapMode.READ_ONLY, 0, size);
byte[] bytes = new byte[size];
buf.get(bytes);
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} finally {
try {
if (fin != null) {
fin.close();
}
if (ch != null) {
ch.close();
}
} catch (IOException e) {
e.printStackTrace();
}
}
MappedByteBuffer를 사용한 이후로 매우 빠르다고 생각합니다.
Java 8이없는 경우 몇 줄의 코드 작성을 피하기 위해 대규모 라이브러리를 포함하는 것이 좋지 않다는 것에 동의합니다.
public static byte[] readBytes(InputStream inputStream) throws IOException {
byte[] b = new byte[1024];
ByteArrayOutputStream os = new ByteArrayOutputStream();
int c;
while ((c = inputStream.read(b)) != -1) {
os.write(b, 0, c);
}
return os.toByteArray();
}
발신자는 스트림을 닫을 책임이 있습니다.
// Returns the contents of the file in a byte array.
public static byte[] getBytesFromFile(File file) throws IOException {
// Get the size of the file
long length = file.length();
// You cannot create an array using a long type.
// It needs to be an int type.
// Before converting to an int type, check
// to ensure that file is not larger than Integer.MAX_VALUE.
if (length > Integer.MAX_VALUE) {
// File is too large
throw new IOException("File is too large!");
}
// Create the byte array to hold the data
byte[] bytes = new byte[(int)length];
// Read in the bytes
int offset = 0;
int numRead = 0;
InputStream is = new FileInputStream(file);
try {
while (offset < bytes.length
&& (numRead=is.read(bytes, offset, bytes.length-offset)) >= 0) {
offset += numRead;
}
} finally {
is.close();
}
// Ensure all the bytes have been read in
if (offset < bytes.length) {
throw new IOException("Could not completely read file "+file.getName());
}
return bytes;
}
throw new IOException("File is too large!");
파일이 너무 클 때 어떻게해야합니까? 그것에 대한 예가 있습니까?
간단한 방법 :
File fff = new File("/path/to/file");
FileInputStream fileInputStream = new FileInputStream(fff);
// int byteLength = fff.length();
// In android the result of file.length() is long
long byteLength = fff.length(); // byte count of the file-content
byte[] filecontent = new byte[(int) byteLength];
fileInputStream.read(filecontent, 0, (int) byteLength);
파일에서 바이트를 읽는 가장 간단한 방법
import java.io.*;
class ReadBytesFromFile {
public static void main(String args[]) throws Exception {
// getBytes from anyWhere
// I'm getting byte array from File
File file = null;
FileInputStream fileStream = new FileInputStream(file = new File("ByteArrayInputStreamClass.java"));
// Instantiate array
byte[] arr = new byte[(int) file.length()];
// read All bytes of File stream
fileStream.read(arr, 0, arr.length);
for (int X : arr) {
System.out.print((char) X);
}
}
}
.*
, 나쁜 습관으로 간주됩니다.
Guava는 Files.toByteArray () 를 제공합니다. 몇 가지 장점이 있습니다.
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Path;
File file = getYourFile();
Path path = file.toPath();
byte[] data = Files.readAllBytes(path);
커뮤니티 위키 답변과 동일한 접근 방식을 사용하지만 깨끗하고 즉시 사용 가능 (Android에서 Apache Commons 라이브러리를 가져 오지 않으려는 경우 선호되는 접근 방식) :
public static byte[] getFileBytes(File file) throws IOException {
ByteArrayOutputStream ous = null;
InputStream ios = null;
try {
byte[] buffer = new byte[4096];
ous = new ByteArrayOutputStream();
ios = new FileInputStream(file);
int read = 0;
while ((read = ios.read(buffer)) != -1)
ous.write(buffer, 0, read);
} finally {
try {
if (ous != null)
ous.close();
} catch (IOException e) {
// swallow, since not that important
}
try {
if (ios != null)
ios.close();
} catch (IOException e) {
// swallow, since not that important
}
}
return ous.toByteArray();
}
나는 이것이 가장 쉬운 방법이라고 믿습니다.
org.apache.commons.io.FileUtils.readFileToByteArray(file);
미리 할당 된 바이트 버퍼로 바이트를 읽으려면이 답변이 도움이 될 수 있습니다.
당신의 첫 번째 추측은 아마 사용하는 것입니다 InputStream read(byte[])
. 그러나이 방법에는 결함이있어 사용하기가 부적절합니다. EOF가 발생하지 않더라도 어레이가 실제로 완전히 채워질 것이라는 보장은 없습니다.
대신을 살펴보십시오 DataInputStream readFully(byte[])
. 이것은 입력 스트림의 래퍼이며 위에서 언급 한 문제가 없습니다. 또한이 방법은 EOF가 발생하면 발생합니다. 훨씬 좋습니다.
다음과 같은 방법으로 java.io.File을 byte []로 변환 할뿐만 아니라 서로 다른 여러 Java 파일 읽기 메소드를 테스트 할 때 파일에서 읽는 가장 빠른 방법 인 것도 발견했습니다 .
java.nio.file.Files.readAllBytes ()
import java.io.File;
import java.io.IOException;
import java.nio.file.Files;
public class ReadFile_Files_ReadAllBytes {
public static void main(String [] pArgs) throws IOException {
String fileName = "c:\\temp\\sample-10KB.txt";
File file = new File(fileName);
byte [] fileBytes = Files.readAllBytes(file.toPath());
char singleChar;
for(byte b : fileBytes) {
singleChar = (char) b;
System.out.print(singleChar);
}
}
}
타사 라이브러리를 사용하지 않고 다른 솔루션을 추가하겠습니다. Scott 이 제안한 예외 처리 패턴을 재사용합니다 ( link ). 그리고 추한 부분을 별도의 메시지로 옮겼습니다 (일부 FileUtils 클래스에서 숨길 것입니다.))
public void someMethod() {
final byte[] buffer = read(new File("test.txt"));
}
private byte[] read(final File file) {
if (file.isDirectory())
throw new RuntimeException("Unsupported operation, file "
+ file.getAbsolutePath() + " is a directory");
if (file.length() > Integer.MAX_VALUE)
throw new RuntimeException("Unsupported operation, file "
+ file.getAbsolutePath() + " is too big");
Throwable pending = null;
FileInputStream in = null;
final byte buffer[] = new byte[(int) file.length()];
try {
in = new FileInputStream(file);
in.read(buffer);
} catch (Exception e) {
pending = new RuntimeException("Exception occured on reading file "
+ file.getAbsolutePath(), e);
} finally {
if (in != null) {
try {
in.close();
} catch (Exception e) {
if (pending == null) {
pending = new RuntimeException(
"Exception occured on closing file"
+ file.getAbsolutePath(), e);
}
}
}
if (pending != null) {
throw new RuntimeException(pending);
}
}
return buffer;
}
public static byte[] readBytes(InputStream inputStream) throws IOException {
byte[] buffer = new byte[32 * 1024];
int bufferSize = 0;
for (;;) {
int read = inputStream.read(buffer, bufferSize, buffer.length - bufferSize);
if (read == -1) {
return Arrays.copyOf(buffer, bufferSize);
}
bufferSize += read;
if (bufferSize == buffer.length) {
buffer = Arrays.copyOf(buffer, bufferSize * 2);
}
}
}
파일에서 바이트를 읽는 또 다른 방법
Reader reader = null;
try {
reader = new FileReader(file);
char buf[] = new char[8192];
int len;
StringBuilder s = new StringBuilder();
while ((len = reader.read(buf)) >= 0) {
s.append(buf, 0, len);
byte[] byteArray = s.toString().getBytes();
}
} catch(FileNotFoundException ex) {
} catch(IOException e) {
}
finally {
if (reader != null) {
reader.close();
}
}
//The file that you wanna convert into byte[]
File file=new File("/storage/0CE2-EA3D/DCIM/Camera/VID_20190822_205931.mp4");
FileInputStream fileInputStream=new FileInputStream(file);
byte[] data=new byte[(int) file.length()];
BufferedInputStream bufferedInputStream=new BufferedInputStream(fileInputStream);
bufferedInputStream.read(data,0,data.length);
//Now the bytes of the file are contain in the "byte[] data"
이 시도 :
import sun.misc.IOUtils;
import java.io.IOException;
try {
String path="";
InputStream inputStream=new FileInputStream(path);
byte[] data=IOUtils.readFully(inputStream,-1,false);
}
catch (IOException e) {
System.out.println(e);
}
에서 JDK8
Stream<String> lines = Files.lines(path);
String data = lines.collect(Collectors.joining("\n"));
lines.close();