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

InputStream TO byte

时间:2017-11-22 21:47:42      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:nal   stream   int   wap   cep   static   new   class   except   

public class ByteToInputStream {  
  
    public static final InputStream byte2Input(byte[] buf) {  
        return new ByteArrayInputStream(buf);  
    }  
  
    public static final byte[] input2byte(InputStream inStream)  
            throws IOException {  
        ByteArrayOutputStream swapStream = new ByteArrayOutputStream();  
        byte[] buff = new byte[100];  
        int rc = 0;  
        while ((rc = inStream.read(buff, 0, 100)) > 0) {  
            swapStream.write(buff, 0, rc);  
        }  
        byte[] in2b = swapStream.toByteArray();  
        return in2b;  
    }  
  
} 

InputStream TO byte

标签:nal   stream   int   wap   cep   static   new   class   except   

原文地址:http://www.cnblogs.com/leihuazhe/p/7881095.html

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