java 中 byte[]FileInputStream 互相转换

Posted 流年如水~烟雨随风

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 互相转换的主要内容,如果未能解决你的问题,请参考以下文章

java中Byte和byte的区别?

Java I/O---类体系总结

java中的byte有啥作用

在 Java 中序列化和保存 double [] 的 ArrayList

Java IO

JAVA中byte类型的介绍。 谢谢