java 中 byte[]FileInputStream 互相转换
Posted DylanZ
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java 中 byte[]FileInputStream 互相转换相关的知识,希望对你有一定的参考价值。
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[]FileInputStream 互相转换的主要内容,如果未能解决你的问题,请参考以下文章