使用AsyneTask下载文件_Android中AsyncTask的使用例子
在Android中实现异步任务机制有两种方式,Handler和AsyncTask。
Handler模式需要为每一个任务创建一个新的线程,任务完成后通过Handler实例向UI线程发送消息
完成界面的更新,这种方式对于整个过程的控制比较精细,但也是有缺点的
例如代码相对臃肿,在多个任务同时执行时,不易对线程进行精确的控制
关于Handler的相关知识,前面也有所介绍,不清楚的朋友们可以参照一下
为了简化操作,Android1.5提供了工具类android.os.AsyncTask,它使创建异步任务变得更加简单
不再需要编写任务线程和Handler实例即可完成相同的任务
先来看看AsyncTask的定义:
public abstract class AsyncTask<Params, Progress, Result> {}
三种泛型类型分别代表“启动任务执行的输入参数”、“后台任务执行的进度”、“后台计算结果的类型”
在特定场合下,并不是所有类型都被使用,如果没有被使用,可以用java.lang.Void类型代替
一个异步任务的执行一般包括以下几个步骤:
1.execute(Params... params),执行一个异步任务,需要我们在代码中调用此方法,触发异步任务的执行
2.onPreExecute(),在execute(Params... params)被调用后立即执行,一般用来在执行后台任务前对UI做一些标记
3.doInBackground(Params... params),在onPreExecute()完成后立即执行,用于执行较为费时的操作,此方法将接收输入参数和返回计算结果
在执行过程中可以调用publishProgress(Progress... values)来更新进度信息
4.onProgressUpdate(Progress... values),在调用publishProgress(Progress... values)时,此方法被执行,直接将进度信息更新到UI组件上
5.onPostExecute(Result result),当后台操作结束时,此方法将会被调用,计算结果将做为参数传递到此方法中,直接将结果显示到UI组件上
在使用的时候,有几点需要格外注意:
1.异步任务的实例必须在UI线程中创建
2.execute(Params... params)方法必须在UI线程中调用
3.不要手动调用onPreExecute(),doInBackground(Params... params),onProgressUpdate(Progress... values),onPostExecute(Result result)这几个方法
4.不能在doInBackground(Params... params)中更改UI组件的信息
5.一个任务实例只能执行一次,如果执行第二次将会抛出异常
下面我把我在项目中用到的一个例子贴出来、是通过AsyneTask下载语音文件的、以供大家参考
private class CommonDownloadTask extends AsyncTask<String, Integer, Long> { private Handler mHandler = null; private String mUrl = null; private int mWhat = 0; public CommonDownloadTask(Handler handler, String url, int what) { mHandler = handler; mUrl = url; mWhat = what; } @Override protected Long doInBackground(String... params) { OutputStream output = null; try { URL url = new URL(mUrl); // 创建一个HttpURLConnection连接 HttpURLConnection urlConn = (HttpURLConnection) url.openConnection(); InputStream input = urlConn.getInputStream(); //文件夹 File dir = new File(GlobalVariable.TAKECARDOWNLOADDIR); if(!dir.exists()) { dir.mkdir(); } //本地文件 File file = new File(GlobalVariable.TAKECARDOWNLOADDIR + params[0]); if(!file.exists()){ file.createNewFile(); //写入本地 output = new FileOutputStream(file); byte buffer [] = new byte[1024]; int inputSize = -1; while((inputSize = input.read(buffer)) != -1) { output.write(buffer, 0, inputSize); } output.flush(); } } catch (MalformedURLException e) { // TODO Auto-generated catch block e.printStackTrace(); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } finally{ try{ output.close(); } catch(Exception e){ e.printStackTrace(); } } //发送处理 if (mHandler != null) { sendResponse(mHandler, GlobalVariable.TAKECARDOWNLOADDIR + params[0], mWhat); } else { Log.w(TAG, "mHandler == null, what = " + mWhat); } return null; } }下面是通过 Handler 发送消息操作主线程
private void sendResponse(Handler handler, String response, int what) { if (handler != null) { if (null == response) { handler.sendEmptyMessage(what); } else { Message msg = new Message(); Bundle bundle = new Bundle(); bundle.putString(RESPONSE, response); msg.setData(bundle); msg.what = what; handler.sendMessage(msg); } mContext = null; } }下面给大家看一下调用方法
@SuppressLint("NewApi") public void getBillVoices(CommonActivityHandler mHandler, int what, String mFilePath, String fileName) { CommonDownloadTask task = new CommonDownloadTask(mHandler, GlobalVariable.SERVER_SITE + mFilePath, what); if (Build.VERSION.SDK_INT < Build.VERSION_CODES.HONEYCOMB) { task.execute(fileName); } else { task.executeOnExecutor(AsyncTask.SERIAL_EXECUTOR, fileName); } }最后就是到 handleMessage 去处理业务、更新UI
在 handleMessage 里面的处理我这里就不贴出来了、大家可以根据自己的需求做相应的处理