1. 程式人生 > >java 中 byte[]、File、InputStream 互相轉換

java 中 byte[]、File、InputStream 互相轉換

output 轉換 ava available byte數組 leo ear inpu red

1、將File、FileInputStream 轉換為byte數組:

File file = new File("test.txt");

InputStream input = new FileInputStream(file);

byte[] byt = new byte[input.available()];

input.read(byt);

2、將byte數組轉換為InputStream:

byte[] byt = new byte[1024];

InputStream input = new ByteArrayInputStream(byt);

3、將byte數組轉換為File:

File file = new File(‘‘);

OutputStream output = new FileOutputStream(file);

BufferedOutputStream bufferedOutput = new BufferedOutputStream(output);

bufferedOutput.write(byt);

java 中 byte[]、File、InputStream 互相轉換