首页 > 代码库 > 流转换成字符串
流转换成字符串
public class StreamUtil { /** * 流转换成字符串 * @param is 流对象 * @return 流转换成的字符串 返回null代表异常 */ public static String streamToString(InputStream is) { //1,在读取的过程中,将读取的内容存储值缓存中,然后一次性的转换成字符串返回 ByteArrayOutputStream bos = new ByteArrayOutputStream(); //2,读流操作,读到没有为止(循环) byte[] buffer = new byte[1024]; //3,记录读取内容的临时变量 int temp = -1; try { while((temp = is.read(buffer))!=-1){ bos.write(buffer, 0, temp); } //返回读取数据 return bos.toString(); } catch (IOException e) { e.printStackTrace(); }finally{ try { is.close(); bos.close(); } catch (IOException e) { e.printStackTrace(); } } return null; }}
流转换成字符串
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。