file 从InputStream读取byte[]示例

Posted kelelipeng

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了file 从InputStream读取byte[]示例相关的知识,希望对你有一定的参考价值。

file 从InputStream读取byte[]示例

  1. public static byte[] getStreamBytes(InputStream is) throws Exception {  
  2.     ByteArrayOutputStream baos = new ByteArrayOutputStream();  
  3.     byte[] buffer = new byte[1024];  
  4.     int len = 0;  
  5.     while ((len = is.read(buffer)) != -1) {  
  6.         baos.write(buffer, 0, len);  
  7.     }  
  8.     byte[] b = baos.toByteArray();  
  9.     is.close();  
  10.     baos.close();  
  11.     return b;  
  12. }  
 
  1. default byte[] readFileBytes(InputStream is){  
  2.     byte[] data = null;  
  3.     try {  
  4.         if(is.available()==0){//严谨起见,一定要加上这个判断,不要返回data[]长度为0的数组指针  
  5.             return data;  
  6.         }  
  7.         data = new byte[is.available()];  
  8.         is.read(data);  
  9.         is.close();  
  10.         return data;  
  11.     } catch (IOException e) {  
  12.         LogCore.BASE.error("readFileBytes, err", e);  
  13.         return data;  
  14.     }  

以上是关于file 从InputStream读取byte[]示例的主要内容,如果未能解决你的问题,请参考以下文章

java InputStream读取数据问题

java InputStream读取数据问题

InputStream如何读取完整数据

Java如何从InputStream中读取收入大小? [复制]

是否可以从 InputStream 创建一个 File 对象

字节输入流-InputStream demo4