欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

Android实现多线程下载图片的方法

程序员文章站 2024-03-05 17:40:13
很多时候我们需要在android设备上下载远程服务器上的图片进行显示,今天整理出两种比较好的方法来实现远程图片的下载。  方法一、直接通过android提供...

很多时候我们需要在android设备上下载远程服务器上的图片进行显示,今天整理出两种比较好的方法来实现远程图片的下载。 

方法一、直接通过android提供的http类访问远程服务器,这里androidhttpclient是sdk 2.2中新出的方法,api level为8,大家需要注意下,静态访问可以直接调用,如果sdk版本较低可以考虑apache的http库,当然httpurlconnection 或urlconnection也可以。

 static bitmap downloadbitmapbycwj(string url) { 
 final androidhttpclient client = androidhttpclient.newinstance("android123"); 
 final httpget getrequest = new httpget(url); 

 try { 
  httpresponse response = client.execute(getrequest); 
  final int statuscode = response.getstatusline().getstatuscode(); 
  if (statuscode != httpstatus.sc_ok) { 
   log.e("cwjdebug", "error " + statuscode + " while retrieving bitmap from " + url); 
   return null; 
  } 
   
  final httpentity entity = response.getentity(); 
  if (entity != null) { 
   inputstream inputstream = null; 
   try { 
    inputstream = entity.getcontent(); 
    final bitmap bitmap = bitmapfactory.decodestream(inputstream); 
    return bitmap; 
   } finally { 
    if (inputstream != null) { 
     inputstream.close(); 
    } 
    entity.consumecontent(); 
   } 
  } 
 } catch (exception e) { 
   getrequest.abort(); 
  log.e("android123debug", "error while retrieving bitmap from " + url, e.tostring()); 
 } finally { 
  if (client != null) { 
   client.close(); 
  } 
 } 
 return null; 
}

这里android开发网提醒大家,bitmapfactory类的decodestream方法在网络超时或较慢的时候无法获取完整的数据,这里我们通过继承filterinputstream类的skip方法来强制实现flush流中的数据,主要原理就是检查是否到文件末端,告诉http类是否继续。

static class flushedinputstream extends filterinputstream { 
 public flushedinputstream(inputstream inputstream) { 
  super(inputstream); 
 } 

 @override 
 public long skip(long n) throws ioexception { 
  long totalbytesskipped = 0l; 
  while (totalbytesskipped < n) { 
   long bytesskipped = in.skip(n - totalbytesskipped); 
   if (bytesskipped == 0l) { 
     int byte = read(); 
     if (byte < 0) { 
      break; // we reached eof 
     } else { 
      bytesskipped = 1; // we read one byte 
     } 
   } 
   totalbytesskipped += bytesskipped; 
  } 
  return totalbytesskipped; 
 } 
} 

方法二、asynctask异步任务

从android 1.5固件开始google提供了一个asynctask类来帮助开发者处理异步下载的实现,相对于thread而言他可以运行在ui线程中,其内部的实现是从java 5开始的并发包concurrent中派生而来的,总体实现比较可靠就是资源占用略大了些。不过使用起来比简单。这里下载图片类 imagedownloader类的download方法可以很好的处理实现ui显示等操作,参数一url为远程server上文件的url,第二个参数为imageview对象,可以直接让imageview显示出下载的远程图片。

 public class imagedownloader { 

 public void download(string url, imageview imageview) { 
   bitmapdownloadertask task = new bitmapdownloadertask(imageview); 
   task.execute(url); 
  } 
 } 

} 

有关具体的asynctask类实现,考虑到图片可能较大,为了给jvm充分的空间存储,这里android123推荐大家使用弱引用来保存imageview对象。

class bitmapdownloadertask extends asynctask<string, void, bitmap> { 
 private string url; 
 private final weakreference<imageview> imageviewreference; //使用weakreference解决内存问题 

 public bitmapdownloadertask(imageview imageview) { 
  imageviewreference = new weakreference<imageview>(imageview); 
 } 

 @override 
 protected bitmap doinbackground(string... params) { //实际的下载线程,内部其实是concurrent线程,所以不会阻塞 
 
   return downloadbitmap(params[0]); 

 } 

 @override 
  protected void onpostexecute(bitmap bitmap) { //下载完后执行的 
  if (iscancelled()) { 
   bitmap = null; 
  } 

  if (imageviewreference != null) { 
   imageview imageview = imageviewreference.get(); 
   if (imageview != null) { 
    imageview.setimagebitmap(bitmap); //下载完设置imageview为刚才下载的bitmap对象 
   } 
  } 
 } 
}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。