alexRain的空间

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

2011年8月15日

摘要: View Code public static Bitmap downloadBitmap(String imageUrl) { Log.d("try to download image","imageUrl:"+imageUrl); URL url = null; Bitmap bitmap = null; try { /* new URL对象将网址传入 */ url = new URL(imageUrl); } catch (MalformedURLException e) { e.printStackTrace(); return null; } 阅读全文
posted @ 2011-08-15 11:45 alexRain 阅读(385) 评论(0) 推荐(0) 编辑