返回顶部
首页 > 资讯 > 服务器 >Android从服务器获取图片的实例方法
  • 181
分享到

Android从服务器获取图片的实例方法

服务器方法图片Android 2022-06-06 10:06:37 181人浏览 薄情痞子
摘要

[java] 代码如下:public static Bitmap getBitmapFromServer(String imagePath) {   &nb

[java]
代码如下:
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是你的图片路径,


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


[java]
代码如下:
imageView.setImageBitmap(bitmap);

您可能感兴趣的文章:Android 获取视频,图片缩略图的具体实现android获取相册图片和路径的实现方法Android实现从网络获取图片显示并保存到SD卡的方法Android 异步获取网络图片并处理导致内存溢出问题解决方法android利用消息机制获取网络图片Android使用线程获取网络图片的方法Android获取网络图片并显示的方法


--结束END--

本文标题: Android从服务器获取图片的实例方法

本文链接: https://lsjlt.com/news/27607.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作