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

InputStream转byte

时间:2021-02-05 10:39:31      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:turn   style   exception   tst   exce   write   int   vat   buffer   

import java.io.ByteArrayOutputStream;

import java.io.IOException;
import java.io.InputStream;



private
byte[] toByteArray(InputStream input) throws IOException { ByteArrayOutputStream output = new ByteArrayOutputStream(); byte[] buffer = new byte[4096]; int n = 0; while (-1 != (n = input.read(buffer))) { output.write(buffer, 0, n); } return output.toByteArray(); }

 

InputStream转byte

标签:turn   style   exception   tst   exce   write   int   vat   buffer   

原文地址:https://www.cnblogs.com/junjun1578/p/14373719.html

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