深入解析AsyncTask

来源:互联网 发布:铜箔导电胶带 淘宝 编辑:程序博客网 时间:2024/05/22 16:47
AsyncTask是Android 1.5 Cubake加入的用于实现异步操作的一个类,在此之前只能用Java SE库中的Thread来实现多线程异步,AsyncTask是Android平台自己的异步工具,融入了Android平台的特性,让异步操作更加的安全,方便和实用。实质上它也是对Java SE库中Thread的一个封装,加上了平台相关的特性,所以对于所有的多线程异步都强烈推荐使用AsyncTask,因为它考虑,也融入了Android平台的特性,更加的安全和高效。

AsyncTask可以方便的执行异步操作(doInBackground),又能方便的与主线程进行通信,它本身又有良好的封装性,可以进行取消操作(cancel())。关于AsyncTask的使用,文档说的很明白,下面直接上实例。

实例

这个实例用AsyncTask到网络上下载图片,同时显示进度,下载完图片更新UI。

[java] view plaincopyprint?
  1. package com.hilton.effectiveandroid.concurrent;  
  2.   
  3. import java.io.IOException;  
  4. import java.io.InputStream;  
  5. import java.io.OutputStream;  
  6. import java.net.HttpURLConnection;  
  7. import java.net.MalformedURLException;  
  8. import java.net.URL;  
  9.   
  10. import android.app.Activity;  
  11. import android.content.Context;  
  12. import android.graphics.Bitmap;  
  13. import android.graphics.BitmapFactory;  
  14. import android.os.AsyncTask;  
  15. import android.os.Bundle;  
  16. import android.os.SystemClock;  
  17. import android.view.View;  
  18. import android.widget.Button;  
  19. import android.widget.ImageView;  
  20. import android.widget.ProgressBar;  
  21.   
  22. import com.hilton.effectiveandroid.R;  
  23.   
  24. /* 
  25.  * AsyncTask cannot be reused, i.e. if you have executed one AsyncTask, you must discard it, you cannot execute it again. 
  26.  * If you try to execute an executed AsyncTask, you will get "java.lang.IllegalStateException: Cannot execute task: the task is already running" 
  27.  * In this demo, if you click "get the image" button twice at any time, you will receive "IllegalStateException". 
  28.  * About cancellation: 
  29.  * You can call AsyncTask#cancel() at any time during AsyncTask executing, but the result is onPostExecute() is not called after 
  30.  * doInBackground() finishes, which means doInBackground() is not stopped. AsyncTask#isCancelled() returns true after cancel() getting 
  31.  * called, so if you want to really cancel the task, i.e. stop doInBackground(), you must check the return value of isCancelled() in 
  32.  * doInBackground, when there are loops in doInBackground in particular. 
  33.  * This is the same to Java threading, in which is no effective way to stop a running thread, only way to do is set a flag to thread, and check 
  34.  * the flag every time in Thread#run(), if flag is set, run() aborts. 
  35.  */  
  36. public class AsyncTaskDemoActivity extends Activity {  
  37.     private static final String ImageUrl = "http://i1.cqnews.net/sports/attachement/jpg/site82/2011-10-01/2960950278670008721.jpg";  
  38.     private ProgressBar mProgressBar;  
  39.     private ImageView mImageView;  
  40.     private Button mGetImage;  
  41.     private Button mAbort;  
  42.       
  43.     @Override  
  44.     public void onCreate(Bundle icicle) {  
  45.     super.onCreate(icicle);  
  46.     setContentView(R.layout.async_task_demo_activity);  
  47.     mProgressBar = (ProgressBar) findViewById(R.id.async_task_progress);  
  48.     mImageView = (ImageView) findViewById(R.id.async_task_displayer);  
  49.     final ImageLoader loader = new ImageLoader();  
  50.     mGetImage = (Button) findViewById(R.id.async_task_get_image);  
  51.     mGetImage.setOnClickListener(new View.OnClickListener() {  
  52.         public void onClick(View v) {  
  53.         loader.execute(ImageUrl);  
  54.         }  
  55.     });  
  56.     mAbort = (Button) findViewById(R.id.asyc_task_abort);  
  57.     mAbort.setOnClickListener(new View.OnClickListener() {  
  58.         public void onClick(View v) {  
  59.         loader.cancel(true);  
  60.         }  
  61.     });  
  62.     mAbort.setEnabled(false);  
  63.     }  
  64.       
  65.     private class ImageLoader extends AsyncTask<String, Integer, Bitmap> {  
  66.     private static final String TAG = "ImageLoader";  
  67.   
  68.     @Override  
  69.     protected void onPreExecute() {  
  70.         // Initialize progress and image  
  71.         mGetImage.setEnabled(false);  
  72.         mAbort.setEnabled(true);  
  73.         mProgressBar.setVisibility(View.VISIBLE);  
  74.         mProgressBar.setProgress(0);  
  75.         mImageView.setImageResource(R.drawable.icon);  
  76.     }  
  77.       
  78.     @Override  
  79.     protected Bitmap doInBackground(String... url) {  
  80.         /* 
  81.          * Fucking ridiculous thing happened here, to use any Internet connections, either via HttpURLConnection 
  82.          * or HttpClient, you must declare INTERNET permission in AndroidManifest.xml. Otherwise you will get 
  83.          * "UnknownHostException" when connecting or other tcp/ip/http exceptions rather than "SecurityException" 
  84.          * which tells you need to declare INTERNET permission. 
  85.          */  
  86.         try {  
  87.         URL u;  
  88.         HttpURLConnection conn = null;  
  89.         InputStream in = null;  
  90.         OutputStream out = null;  
  91.         final String filename = "local_temp_image";  
  92.         try {  
  93.             u = new URL(url[0]);  
  94.             conn = (HttpURLConnection) u.openConnection();  
  95.             conn.setDoInput(true);  
  96.             conn.setDoOutput(false);  
  97.             conn.setConnectTimeout(20 * 1000);  
  98.             in = conn.getInputStream();  
  99.             out = openFileOutput(filename, Context.MODE_PRIVATE);  
  100.             byte[] buf = new byte[8196];  
  101.             int seg = 0;  
  102.             final long total = conn.getContentLength();  
  103.             long current = 0;  
  104.             /* 
  105.              * Without checking isCancelled(), the loop continues until reading whole image done, i.e. the progress 
  106.              * continues go up to 100. But onPostExecute() will not be called. 
  107.              * By checking isCancelled(), we can stop immediately, i.e. progress stops immediately when cancel() is called. 
  108.              */  
  109.             while (!isCancelled() && (seg = in.read(buf)) != -1) {  
  110.             out.write(buf, 0, seg);  
  111.             current += seg;  
  112.             int progress = (int) ((float) current / (float) total * 100f);  
  113.             publishProgress(progress);  
  114.             SystemClock.sleep(1000);  
  115.             }  
  116.         } finally {  
  117.             if (conn != null) {  
  118.             conn.disconnect();  
  119.             }  
  120.             if (in != null) {  
  121.             in.close();  
  122.             }  
  123.             if (out != null) {  
  124.             out.close();  
  125.             }  
  126.         }  
  127.         return BitmapFactory.decodeFile(getFileStreamPath(filename).getAbsolutePath());  
  128.         } catch (MalformedURLException e) {  
  129.         e.printStackTrace();  
  130.         } catch (IOException e) {  
  131.         e.printStackTrace();  
  132.         }  
  133.         return null;  
  134.     }  
  135.       
  136.     @Override  
  137.     protected void onProgressUpdate(Integer... progress) {  
  138.         mProgressBar.setProgress(progress[0]);  
  139.     }  
  140.       
  141.     @Override  
  142.     protected void onPostExecute(Bitmap image) {  
  143.         if (image != null) {  
  144.         mImageView.setImageBitmap(image);  
  145.         }  
  146.         mProgressBar.setProgress(100);  
  147.         mProgressBar.setVisibility(View.GONE);  
  148.         mAbort.setEnabled(false);  
  149.     }  
  150.     }  
  151. }  
运行结果

先后顺序分别是下载前,下载中和下载后

总结

关于怎么使用看文档和这个例子就够了,下面说下,使用时的注意事项:

1. AsyncTask对象不可重复使用,也就是说一个AsyncTask对象只能execute()一次,否则会有异常抛出"java.lang.IllegalStateException: Cannot execute task: the task is already running"
2. 在doInBackground()中要检查isCancelled()的返回值,如果你的异步任务是可以取消的话。
cancel()仅仅是给AsyncTask对象设置了一个标识位,当调用了cancel()后,发生的事情只有:AsyncTask对象的标识位变了,和doInBackground()执行完成后,onPostExecute()不会被回调了,而doInBackground()和onProgressUpdate()还是会继续执行直到doInBackground()结束。所以要在doInBackground()中不断的检查isCancellled()的返回值,当其返回true时就停止执行,特别是有循环的时候。如上面的例子,如果把读取数据的isCancelled()检查去掉,图片还是会下载,进度也一直会走,只是最后图片不会放到UI上(因为onPostExecute()没被回调)!
这里的原因其实很好理解,想想Java SE的Thread吧,是没有方法将其直接Cacncel掉的,那些线程取消也无非就是给线程设置标识位,然后在run()方法中不断的检查标识而已。

3. 如果要在应用程序中使用网络,一定不要忘记在AndroidManifest中声明INTERNET权限,否则会报出很诡异的异常信息,比如上面的例子,如果把INTERNET权限拿掉会抛出"UnknownHostException"。刚开始很疑惑,因为模拟器是可以正常上网的,后来Google了下才发现原来是没权限,但是疑问还是没有消除,既然没有声明网络权限,为什么不直接提示无网络权限呢?

对比Java SE的Thread

Thread是非常原始的类,它只有一个run()方法,一旦开始,无法停止,它仅适合于一个非常独立的异步任务,也即不需要与主线程交互,对于其他情况,比如需要取消或与主线程交互,都需添加额外的代码来实现,并且还要注意同步的问题。

而AsyncTask是封装好了的,可以直接拿来用,如果你仅执行独立的异步任务,可以仅实现doInBackground()。

所以,当有一个非常独立的任务时,可以考虑使用Thread,其他时候,尽可能的用AsyncTask。
0 0
原创粉丝点击