码迷,mamicode.com
首页 > 其他好文 > 详细

file 从InputStream读取byte[]示例

时间:2019-11-22 12:15:45      阅读:56      评论:0      收藏:0      [点我收藏+]

标签:available   opera   error   bsp   class   content   data   article   tput   

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[]示例

标签:available   opera   error   bsp   class   content   data   article   tput   

原文地址:https://www.cnblogs.com/kelelipeng/p/11910609.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!