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

从给定的流中读取所有的数据转成字符串

时间:2015-07-02 01:17:45      阅读:199      评论:0      收藏:0      [点我收藏+]

标签:public   return   字符串   null   

从给定的流中读取所有的数据转成字符串

public static String readStream(InputStream is){
        try {
            byte[] bs = new byte[1024] ;
            int b = 0 ;
            ByteArrayOutputStream baos = new ByteArrayOutputStream() ;
            while((b=is.read(bs))!=-1){
                baos.write(bs, 0, b) ;
            }
            baos.close() ;
            return new String(bs) ;
        } catch (IOException e) {
            e.printStackTrace();
        }
        return null ;
    }


本文出自 “android笔记” 博客,请务必保留此出处http://2585211.blog.51cto.com/10044233/1669878

从给定的流中读取所有的数据转成字符串

标签:public   return   字符串   null   

原文地址:http://2585211.blog.51cto.com/10044233/1669878

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