很多时候我们需要在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对象 } } } }
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持编程小技巧。
总结以上是内存溢出为你收集整理的Android实现多线程下载图片的方法全部内容,希望文章能够帮你解决Android实现多线程下载图片的方法所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)