在本文中,AsyncTask为了实现异步请求,详细代码如下所示的:

public class downloadActivity extends Activity {private TextView myTextView=null;private Button button=null;private static final String path="http://192.168.0.179:8080/Myweb/download.do";private ProgressDialog progressDialog=null;private URL url=null;   @Override   protected void onCreate(Bundle savedInstanceState) {  super.onCreate(savedInstanceState);  setContentView(R.layout.download);    //获取传过来的用户名  Intent intent = getIntent();  String value = intent.getStringExtra("username");  value="hello"+" "+value;   //  myTextView = (TextView) findViewById(R.id.textView1);  myTextView.setText(value);  button=(Button)this.findViewById(R.id.download_btn);  progressDialog=new ProgressDialog(this);  progressDialog.setCancelable(false);  progressDialog.setTitle("提示");  progressDialog.setMessage("请耐心等待,文件正在下载中....");  try {url=new URL(path);  } catch (MalformedURLException e) {// TODO Auto-generated catch blocke.printStackTrace();  }  button.setOnClickListener(new OnClickListener() {public void onClick(View arg0) {//progressDialog.show(); new DownloadFilesTask().execute(url);}});      }         private class DownloadFilesTask extends AsyncTask<URL, Void, Void> {@Overrideprotected void onPreExecute() {progressDialog.show();super.onPreExecute();}@Overrideprotected Void doInBackground(URL... urls) {httpUtils.sendDownloadPost(urls[0]);return null;}  @Overrideprotected void onPostExecute(Void result) {progressDialog.dismiss();super.onPostExecute(result);}   }}

在注冊时,使用Intent传递了username数据。

AsyncTask<URL, Void, Void>
主要有三个參数

  1. Params, the type of the parameters sent to the task upon execution. 本文传递URL数据
  2. Progress, the type of the progress units published during the background computation.//进度条
  3. Result, the type of the result of the background computation. //结果
本文未採用进度条形式,仅仅使用了ProgressDialog,故第二个參数置为空,第三个參数选取时,本文在httpUtils包类已经写入文件到sd卡,故也置为空。

重写的方法:

  1. onPreExecute(), invoked on the UI thread immediately after the task is executed. This step is normally used to setup the task, for instance by showing a progress bar in the user interface. UI主线程中,初始化參数
  2. doInBackground(Params...), invoked on the background thread immediately afteronPreExecute()finishes executing. This step is used to perform background computation that can take a long time. The parameters of the asynchronous task are passed to this step. The result of the computation must be returned by this step and will be passed back to the last step. This step can also usepublishProgress(Progress...)to publish one or more units of progress. These values are published on the UI thread, in theonProgressUpdate(Progress...)step. 非主线程。耗时操作
  3. onProgressUpdate(Progress...), invoked on the UI thread after a call topublishProgress(Progress...). The timing of the execution is undefined. This method is used to display any form of progress in the user interface while the background computation is still executing. For instance, it can be used to animate a progress bar or show logs in a text field.
  4. onPostExecute(Result), invoked on the UI thread after the background computation finishes. The result of the background computation is passed to this step as a parameter. 结果更新

更多相关文章

  1. 一款常用的 Squid 日志分析工具
  2. GitHub 标星 8K+!一款开源替代 ls 的工具你值得拥有!
  3. RHEL 6 下 DHCP+TFTP+FTP+PXE+Kickstart 实现无人值守安装
  4. Linux 环境下实战 Rsync 备份工具及配置 rsync+inotify 实时同步
  5. android 随手记 读写文件的几种方式
  6. android新增语言的方法(墨西哥的西班牙语)
  7. Android反编译工具apktool
  8. 安卓签名证书创建
  9. Flutter&Android&Ios混合工程---1

随机推荐

  1. AIDL基础介绍
  2. 国内移动应用市场盘点(Android平台)
  3. Google公开指责微软、苹果和甲骨文试图通
  4. Android视频播放器屏幕左侧边随手指上下
  5. Android开发者如何才能提高应用排名
  6. Android(安卓)YUV视频数据叠加时间信息
  7. Android(安卓)- SharedPreferences 数据
  8. Android在高jar包版本的工程中修改方法
  9. .NET开源了,Visual Studio开始支持 Androi
  10. 《Qt on Android核心编程》介绍