码迷,mamicode.com
首页 > 移动开发 > 详细

Android 网络图片Url 转 Bitmap

时间:2017-04-28 01:02:37      阅读:230      评论:0      收藏:0      [点我收藏+]

标签:pen   网络图   content   etc   exception   ring   tor   方法   factory   

注意:该方法必须要在子线程中调用,因为涉及网络请求

public Bitmap getBitmap(String url) {
        Bitmap bm = null;
        try {
            URL iconUrl = new URL(url);
            URLConnection conn = iconUrl.openConnection();
            HttpURLConnection http = (HttpURLConnection) conn;
            
            int length = http.getContentLength();
            
            conn.connect();
            // 获得图像的字符流
            InputStream is = conn.getInputStream();
            BufferedInputStream bis = new BufferedInputStream(is, length);
            bm = BitmapFactory.decodeStream(bis);
            bis.close();
            is.close();// 关闭流
        }
        catch (Exception e) {
            e.printStackTrace();
        }
        return bm;
    }

 

Android 网络图片Url 转 Bitmap

标签:pen   网络图   content   etc   exception   ring   tor   方法   factory   

原文地址:http://www.cnblogs.com/zhujiabin/p/6778355.html

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