public static Bitmap getBitmapFromServer(String imagePath) {


HttpGet get = new HttpGet(imagePath);

HttpClient client = new DefaultHttpClient();

Bitmap pic = null;

try {

HttpResponse response = client.execute(get);

HttpEntity entity = response.getEntity();

InputStream is = entity.getContent();

pic = BitmapFactory.decodeStream(is); // 关键是这句代码

} catch (ClientProtocolException e) {

e.printStackTrace();

} catch (IOException e) {

e.printStackTrace();

}

return pic;

}


public static Bitmap getBitmapFromServer(String imagePath) {


HttpGet get = new HttpGet(imagePath);

HttpClient client = new DefaultHttpClient();

Bitmap pic = null;

try {

HttpResponse response = client.execute(get);

HttpEntity entity = response.getEntity();

InputStream is = entity.getContent();


pic = BitmapFactory.decodeStream(is); // 关键是这句代码


} catch (ClientProtocolException e) {

e.printStackTrace();

} catch (IOException e) {

e.printStackTrace();

}

return pic;

}


其中imagePath是你的图片路径,

最后可以将图片显示在手机上:

imageView.setImageBitmap(bitmap);


转载自:http://bbs.tsingyuan.cn/forum.php?mod=viewthread&tid=420

更多相关文章

  1. Android(安卓)监听WiFi的开关状态实现代码
  2. [Android]android.util.AndroidRuntimeException: requestFeatur
  3. 设置android全屏的两种方式
  4. android 调用系统图片浏览器并返回图片路径
  5. android中ProgressBar的使用SeekBar的使用和RatingBar的使用
  6. Android中Activity的Intent大全
  7. Android图片上传的工具类
  8. 获取Android系统程序信息
  9. android palette

随机推荐

  1. android home按键拦截
  2. Android搜索手机文件
  3. android拾遗——Android 动画学习笔记
  4. Android——使用AIDL实现进程间传递对象
  5. 关于android的animation的xml定义中的and
  6. Android 游戏引擎libgdx 锁屏、电话等引
  7. Android获取SD卡上图片和视频文件及其缩
  8. android 增加新按键
  9. android ndk不支持宽字符转换
  10. android真机测试问题