Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> Android初級教程XUtils實現“斷點續傳”下載

Android初級教程XUtils實現“斷點續傳”下載

編輯:關於Android編程

對於“斷電續傳”,在任何開發中都顯得很重要。xutils對此封裝的很好了,可以很簡單的實現很多下載功能,其中就包括“斷點續傳”

 

主要代碼如下:

 

package com.itydl.xutils;

import java.io.File;

import com.lidroid.xutils.HttpUtils;
import com.lidroid.xutils.exception.HttpException;
import com.lidroid.xutils.http.ResponseInfo;
import com.lidroid.xutils.http.callback.RequestCallBack;

import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;
import android.view.View;
import android.widget.ProgressBar;
import android.widget.TextView;
import android.widget.Toast;

public class MainActivity extends Activity {

	private TextView tv_failure;
	private TextView tv_progress;
	private ProgressBar pb;

	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_main);
		tv_failure = (TextView) findViewById(R.id.tv_failure);
		tv_progress = (TextView) findViewById(R.id.tv_progress);
		pb = (ProgressBar) findViewById(R.id.pb);
	}

	public void click(View v){
		HttpUtils utils = new HttpUtils();
		String fileName = "QQPlayer.exe";
		//確定下載地址
		String path = "http://192.168.1.104:8080/" + fileName;
		utils.download(path, //下載地址
				"sdcard/QQPlayer.exe", //文件保存路徑
				true,//是否支持斷點續傳
				true, new RequestCallBack() {
					
					//下載成功後調用
					@Override
					public void onSuccess(ResponseInfo arg0) {
						Toast.makeText(MainActivity.this, arg0.result.getPath(), 0).show();
						
					}
					
					//下載失敗調用
					@Override
					public void onFailure(HttpException arg0, String arg1) {
						// TODO Auto-generated method stub
						tv_failure.setText(arg1);
					}
					
                                     //進度條顯示下載進度,而且即使斷網,點擊下載按鈕仍然在原來位置下載
					@Override
					public void onLoading(long total, long current,
							boolean isUploading) {
						// TODO Auto-generated method stub
						super.onLoading(total, current, isUploading);
						pb.setMax((int)total);
						pb.setProgress((int)current);
						tv_progress.setText(current * 100 / total + "%");
					}
				});
	}

}


 

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved