很多时候我们需要在Android设备上下载远程服务器上的图片进行显示,今天eoe给了我们两种比较好的方法来实现远程图片的下载。下面我们就先来看看第一个方法

方法一、我们直接可以通过Android提供的Http类访问远程服务器,这里我们用到了AndroidHttpClientSDK 2.2中新出的方法,API Level8,大家需要注意下,静态访问可以直接调用,如果SDK版本较低可以考虑ApacheHttp库,当然HttpURLConnectionURLConnection也可以。下面我们就来看看代码:

Java代码:

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; }


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

Java代码:
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; // 我们读到一个字节} } totalBytesSkipped += bytesSkipped; } return totalBytesSkipped; } }



这个就是我们大家常见到的方法了。大多数的都可以支持,不想上面的那个方法,只有SDK2.2才有的。从Android 1.5固件开始Google提供了一个AsyncTask类来帮助开发者处理异步下载的实现,相对于Thread而言他可以运行在UI线程中,其内部的实现是从Java 5开始的并发包concurrent中派生而来的,总体实现比较可靠就是资源占用略大了些。不过使用起来比简单。这里下载图片类ImageDownloader类的download方法可以很好的处理实现UI显示等操作,参数一url为远程server上文件的url,第二个参数为imageview对象,可以直接让imageview显示出下载的远程图片。

Java代码:

public class ImageDownloader { public void download(String url, ImageView imageView) { BitmapDownloaderTask task = new BitmapDownloaderTask(imageView); task.execute(url); } } }



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

Java代码:

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对象} } } } 


更多相关文章

  1. 浅谈Java中Collections.sort对List排序的两种方法
  2. Python list sort方法的具体使用
  3. python list.sort()根据多个关键字排序的方法实现
  4. android上一些方法的区别和用法的注意事项
  5. android EditText设置不可写
  6. Android(安卓)拨号器的简单实现
  7. android 使用html5作布局文件: webview跟javascript交互
  8. android实现字体闪烁动画的方法
  9. android studio调试c/c++代码

随机推荐

  1. Java内存模型-堆和栈
  2. 数据库-事务处理
  3. 一位程序员的爱情故事
  4. 数据库-范式
  5. Java内存模型-JMM简介
  6. SQL语句类别
  7. 软件架构师之基本素质
  8. 数据库-关系代数
  9. 谈谈架构师的职责
  10. 从100PV到1亿级PV网站架构演变