zoukankan      html  css  js  c++  java
  • Android含文档server结束(client UI接口异步请求的一部分)三

    在本文中,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 block
    		e.printStackTrace();
    	  }
    	  button.setOnClickListener(new OnClickListener() {
    		
    		public void onClick(View arg0) {
    			//progressDialog.show();
    			 new DownloadFilesTask().execute(url);
    			
    		}
    	});
    	  
        }
       
       
       private class DownloadFilesTask extends AsyncTask<URL, Void, Void> {
    
    	@Override
    	protected void onPreExecute() {
    		progressDialog.show();
    		super.onPreExecute();
    	}
    	@Override
    	protected Void doInBackground(URL... urls) {
    		httpUtils.sendDownloadPost(urls[0]);
    		return null;
    	} 
    	 
    	@Override
    	protected 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 after onPreExecute() 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 use publishProgress(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 to publishProgress(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.  结果更新

  • 相关阅读:
    《激荡三十年》十七、国有企业改革(下)——“国退民进”
    《激荡三十年》十六、国有企业改革(中)——“抓大放小”
    《激荡三十年》十五、国有企业改革(上)——产权改革的曙光
    《激荡三十年》十四、改革深水区——整体配套体制改革
    《激荡三十年》十三、治国能臣——铁腕总理立威
    《激荡三十年》十二、中外合资——上海市长与上海大众
    《激荡三十年》十一、邓公南巡,中国再起航
    boost之thread
    七夕
    boost之mutex scoped_lock
  • 原文地址:https://www.cnblogs.com/hrhguanli/p/4568236.html
Copyright © 2011-2022 走看看