使用IntentService在单独的线程上执行异步任务

作者:追风剑情 发布于:2015-7-30 21:15 分类:Android

  1. package com.example.androidtest;
  2.  
  3. import java.net.MalformedURLException;
  4. import java.net.URL;
  5.  
  6. import android.app.IntentService;
  7. import android.content.Intent;
  8. import android.util.Log;
  9. import android.widget.Toast;
  10.  
  11. /**
  12. * 继承IntentService的服务,在任务执行完成后会自行终止。
  13. * 无需手动调用stopSelf()、stopService()
  14. *
  15. * @author Administrator
  16. *
  17. */
  18. public class MyIntentService extends IntentService {
  19.  
  20. public MyIntentService() {
  21. //必需实现这个类的构造函数
  22. super("MyIntentServiceName");
  23. }
  24.  
  25. // 此方法在工作者线程上执行
  26. @Override
  27. protected void onHandleIntent(Intent intent) {
  28. try {
  29. int result = DownLoadFile(new URL("http://www.amazon.com/somefile.pdf"));
  30. Log.d("AndroidTest", "Downloaded " + result + " bytes");
  31. } catch (MalformedURLException e) {
  32. Log.d("AndroidTest", e.getMessage());
  33. }
  34. }
  35. @Override
  36. public void onDestroy(){
  37. super.onDestroy();
  38. Toast.makeText(this, "MyIntentService Destroyed", Toast.LENGTH_LONG).show();
  39. }
  40.  
  41. private int DownLoadFile(URL url)
  42. {
  43. try{
  44. Thread.sleep(5000);//模拟文件下载
  45. }catch(InterruptedException e){
  46. Log.d("AndroidTest", e.getMessage());
  47. }
  48. return 100;//文件大小
  49. }
  50. }

标签: Android

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号