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

Android获取网页上的图片的代码

时间:2014-11-19 00:05:49      阅读:246      评论:0      收藏:0      [点我收藏+]

标签:des   android   style   blog   http   io   color   使用   sp   

public Bitmap getWebBitmap(String imgUrl) {
        Bitmap bitmap =null;
        try {
            InputStream inputStream = null;
            URL url;
            url = new URL(imgUrl);
            if (url != null) {
                // 打开连接
                HttpURLConnection httpURLConnection = (HttpURLConnection) url
                        .openConnection();
                httpURLConnection.setConnectTimeout(3000);// 设置网络连接超时的时间为3秒
                httpURLConnection.setDoInput(true); // 打开输入流
                int responseCode = httpURLConnection.getResponseCode(); // 获取服务器响应值
                if (responseCode == HttpURLConnection.HTTP_OK) { // 正常连接
                    inputStream = httpURLConnection.getInputStream(); // 获取输入流
                }
                bitmap = BitmapFactory.decodeStream(inputStream);
            }
        } catch (Exception e) {
            e.printStackTrace();
        }
        return bitmap;
    }

最好得到了Bitmap就可随便使用了。

需要注意的是,但凡要联网的:1、都要设置访问权;2、放到线程中去处理

<uses-permission android:name="android.permission.INTERNET"/>

 

Android获取网页上的图片的代码

标签:des   android   style   blog   http   io   color   使用   sp   

原文地址:http://www.cnblogs.com/wytings/p/4106729.html

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