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

获取网络图片的工具类

时间:2014-12-21 14:00:43      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:android   图片   网络   

public class GetBitmapUtil {

	public Bitmap getBitmapByUrl(String url){
		Bitmap bitmap = null;
		try {
			URL url2=new URL(url);
			HttpURLConnection httpURLConnection=(HttpURLConnection) url2.openConnection();
		    httpURLConnection.setReadTimeout(3000);
		    int code=httpURLConnection.getResponseCode();
		    if(code==200){
		    	bitmap=BitmapFactory.decodeStream(httpURLConnection.getInputStream());
		    }
		} catch (Exception e) {
			e.printStackTrace();
		}
		return bitmap;
	}
}



获取网络图片的工具类

标签:android   图片   网络   

原文地址:http://blog.csdn.net/u014600432/article/details/42060093

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