天天看点

断点续传下载的Java实现

文件下载类的主要代码

private static final String TAG = "FileDownloader";
	private Context context;
	private DownloadDao downloadDao;	
	/* 已下载文件长度 */
	private int downloadSize = 0;
	/* 原始文件长度 */
	private int fileSize = 0;
	/* 线程数 */
	private DownloadThread[] threads;
	/* 本地保存文件 */
	private File saveFile;
	/* 缓存各线程下载的长度*/
	private Map<Integer, Integer> data = new ConcurrentHashMap<Integer, Integer>();
	/* 每条线程下载的长度 */
	private int block;
	/* 下载路径  */
	private String downloadUrl;
	/* 压缩包名称 */
	private String filename;
/**
 * 构建文件下载器
 * @param downloadUrl 下载路径
 * @param fileSaveDir 文件保存目录
 * @param threadNum 下载线程数
 */
public FileDownloader(Context context, String downloadUrl, File fileSaveDir, int threadNum) {
	try {
		this.context = context;
		this.downloadUrl = downloadUrl;
		downloadDao = new DownloadDao(this.context);
		URL url = new URL(this.downloadUrl);
		if(!fileSaveDir.exists()) fileSaveDir.mkdirs();
		this.threads = new DownloadThread[threadNum];					
		HttpURLConnection conn = (HttpURLConnection) url.openConnection();
		conn.setConnectTimeout(10*1000);
		//conn.setReadTimeout(50*1000);
		conn.setRequestMethod("GET");
		conn.setRequestProperty("Accept", "image/gif, image/jpeg, image/pjpeg, image/pjpeg, application/x-shockwave-flash, application/xaml+xml, application/vnd.ms-xpsdocument, application/x-ms-xbap, application/x-ms-application, application/vnd.ms-excel, application/vnd.ms-powerpoint, application/msword, */*");
		conn.setRequestProperty("Accept-Language", "zh-CN");
		conn.setRequestProperty("Referer", downloadUrl); 
		conn.setRequestProperty("Charset", "UTF-8");
		conn.setRequestProperty("User-Agent", "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)");
		conn.setRequestProperty("Connection", "Keep-Alive");
		conn.connect();
		printResponseHeader(conn);
		Log.w("conn.getResponseCode()",String.valueOf(conn.getResponseCode()));
		if (conn.getResponseCode()==200) {
			this.fileSize = conn.getContentLength();//根据响应获取文件大小
			if (this.fileSize <= 0) throw new RuntimeException("Unkown file size ");
					
			this.filename = getFileName(conn);
			this.saveFile = new File(fileSaveDir, filename);/* 保存文件 */
			ArrayList<Map<String,String>> logdata = downloadDao.getData(downloadUrl);
			if(logdata.size()>0){
				for(int i=0; i<logdata.size(); i++){
					int threadId = 0;
					int pos = 0;
					for(Map.Entry<String, String> entry : logdata.get(i).entrySet())
					{
						if(entry.getKey().equals("THREADID")){
							threadId = Integer.parseInt(entry.getValue());
						}else{
							pos = Integer.parseInt(entry.getValue());
						}
					}
					data.put(threadId,pos);
				}
//					for(Map.Entry<String, String> entry : logdata.get(0).entrySet())
//						data.put(Integer.parseInt(entry.getKey()), Integer.parseInt(entry.getValue()));
			}
			this.block = (this.fileSize % this.threads.length)==0? this.fileSize / this.threads.length : this.fileSize / this.threads.length + 1;
			if(this.data.size()==this.threads.length){
				for (int i = 0; i < this.threads.length; i++) {
					this.downloadSize += this.data.get(i+1);
				}
				Log.w(TAG, "已经下载的长度"+ this.downloadSize);
			}				
		}else{
			throw new RuntimeException("server no response ");
		}
	} catch (Exception e) {
		Log.w(TAG, e.getMessage());
		throw new RuntimeException("don't connection this url");
	}
}
/**
 * 获取文件名
 */
private String getFileName(HttpURLConnection conn) {
	String filename = this.downloadUrl.substring(this.downloadUrl.lastIndexOf('/') + 1);
	if(filename==null || "".equals(filename.trim())){//如果获取不到文件名称
		for (int i = 0;; i++) {
			String mine = conn.getHeaderField(i);
			if (mine == null) break;
			if("content-disposition".equals(conn.getHeaderFieldKey(i).toLowerCase())){
				Matcher m = Pattern.compile(".*filename=(.*)").matcher(mine.toLowerCase());
				if(m.find()) return m.group(1);
			}
		}
		filename = UUID.randomUUID()+ ".tmp";//默认取一个文件名
	}
	return filename;
}

/**
 *  开始下载文件
 * @param listener 监听下载数量的变化,如果不需要了解实时下载的数量,可以设置为null
 * @return 已下载文件大小
 * @throws Exception
 */
public int download(DownloadProgressListener listener) throws Exception{
	try {
		RandomAccessFile randOut = new RandomAccessFile(this.saveFile, "rw");
		if(this.fileSize>0) randOut.setLength(this.fileSize);
		randOut.close();
		URL url = new URL(this.downloadUrl);
		if(this.data.size() != this.threads.length){
			this.data.clear();
			for (int i = 0; i < this.threads.length; i++) {
				this.data.put(i+1, 0);
			}
		}
		for (int i = 0; i < this.threads.length; i++) {
			int downLength = this.data.get(i+1);
			if(downLength < this.block && this.downloadSize<this.fileSize){ //该线程未完成下载时,继续下载						
				this.threads[i] = new DownloadThread(this, url, this.saveFile, this.block, this.data.get(i+1), i+1);
				this.threads[i].setPriority(7);
				this.threads[i].start();
			}else{
				this.threads[i] = null;
			}
		}
		this.downloadDao.saveData(this.downloadUrl, this.data);
		boolean notFinish = true;//下载未完成
		while (notFinish) {// 循环判断是否下载完毕
			Thread.sleep(900);
			notFinish = false;//假定下载完成
			for (int i = 0; i < this.threads.length; i++){
				if (this.threads[i] != null && !this.threads[i].isFinish()) {
					notFinish = true;//下载没有完成
					if(this.threads[i].getDownLength() == -1){//如果下载失败,再重新下载
						this.threads[i] = new DownloadThread(this, url, this.saveFile, this.block, this.data.get(i+1), i+1);
						this.threads[i].setPriority(7);
						this.threads[i].start();
					}
				}
			}
			
			Log.w("this.downloadSize", String.valueOf(this.downloadSize));
			Log.w("this.fileSize", String.valueOf(this.fileSize));
			if(this.downloadSize==this.fileSize){
				//解压zip文件
				/*listener.onDownloadSize(this.downloadSize,true);
				String unZipfileName=this.saveFile.getPath();//压缩文件路径
				this.unZip(unZipfileName, this.tempPath);
				listener.onDownloadSize(this.downloadSize,false);*/
				
				listener.onDownloadSize(this.downloadSize,false);
				String unZipfileName=this.saveFile.getPath();//压缩文件路径
				this.unZip(unZipfileName, this.tempPath);
				listener.onDownloadSize(this.downloadSize,true);
			}else{
				listener.onDownloadSize(this.downloadSize,false);
			}
			
		}
		
		downloadDao.deleteData(this.downloadUrl);
		
	} catch (Exception e) {
		Log.w(TAG, e.getMessage());
		throw new Exception("file download fail");
	}
	return this.downloadSize;
}
/**
 * 获取Http响应头字段
 * @param http
 * @return
 */
public static Map<String, String> getHttpResponseHeader(HttpURLConnection http) {
	Map<String, String> header = new LinkedHashMap<String, String>();
	for (int i = 0;; i++) {
		String mine = http.getHeaderField(i);
		if (mine == null) break;
		header.put(http.getHeaderFieldKey(i), mine);
	}
	return header;
}
/**
 * 打印Http头字段
 * @param http
 */
public static void printResponseHeader(HttpURLConnection http){
	Map<String, String> header = getHttpResponseHeader(http);
	for(Map.Entry<String, String> entry : header.entrySet()){
		String key = entry.getKey()!=null ? entry.getKey()+ ":" : "";
		Log.w(TAG, key+ entry.getValue());
	}
}
           

下载的线程类的主要代码

/**
 * 下载线程类
 * @author zhaidi
 *
 */
public class DownloadThread extends Thread {
	private static final String TAG = "DownloadThread";
	private File saveFile;
	private URL downUrl;
	private int block;
	/* 下载开始位置  */
	private int threadId = -1;	
	private int downLength;
	private boolean finish = false;
	private FileUpOrDown downloader;
	//private FileUpdater updater;

	public DownloadThread(FileDownloader downloader, URL downUrl, File saveFile, int block, int downLength, int threadId) {
		this.downUrl = downUrl;
		this.saveFile = saveFile;
		this.block = block;
		this.downloader = downloader;
		this.threadId = threadId;
		this.downLength = downLength;
	}
	public DownloadThread(FileUpdater updater, URL downUrl, File saveFile, int block, int downLength, int threadId) {
		this.downUrl = downUrl;
		this.saveFile = saveFile;
		this.block = block;
		this.downloader = updater;
		this.threadId = threadId;
		this.downLength = downLength;
	}
	@Override
	public void run() {
		if(downLength < block){//未下载完成
			try {
				HttpURLConnection http = (HttpURLConnection) downUrl.openConnection();
				http.setConnectTimeout(5 * 1000);
				http.setRequestMethod("GET");
				http.setRequestProperty("Accept", "image/gif, image/jpeg, image/pjpeg, image/pjpeg, application/x-shockwave-flash, application/xaml+xml, application/vnd.ms-xpsdocument, application/x-ms-xbap, application/x-ms-application, application/vnd.ms-excel, application/vnd.ms-powerpoint, application/msword, */*");
				http.setRequestProperty("Accept-Language", "zh-CN");
				http.setRequestProperty("Referer", downUrl.toString()); 
				http.setRequestProperty("Charset", "UTF-8");
				int startPos = block * (threadId - 1) + downLength;//开始位置
				int endPos = block * threadId -1;//结束位置
				http.setRequestProperty("Range", "bytes=" + startPos + "-"+ endPos);//设置获取实体数据的范围
				http.setRequestProperty("User-Agent", "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)");
				http.setRequestProperty("Connection", "Keep-Alive");
				
				InputStream inStream = http.getInputStream();
				byte[] buffer = new byte[1024];
				int offset = 0;
				print("Thread " + this.threadId + " start download from position "+ startPos);
				RandomAccessFile threadfile = new RandomAccessFile(this.saveFile, "rwd");
				threadfile.seek(startPos);
				while ((offset = inStream.read(buffer, 0, 1024)) != -1) {
					threadfile.write(buffer, 0, offset);
					downLength += offset;
					downloader.update(this.threadId, downLength);
					downloader.saveLogFile();
					downloader.append(offset);
				}
				threadfile.close();
				inStream.close();			
				print("Thread " + this.threadId + " download finish");
				this.finish = true;
			} catch (Exception e) {
				this.downLength = -1;
				print("Thread "+ this.threadId+ ":"+ e);
			}
		}
	}
	private static void print(String msg){
		Log.i(TAG, msg);
	}
	/**
	 * 下载是否完成
	 * @return
	 */
	public boolean isFinish() {
		return finish;
	}
	/**
	 * 已经下载的内容大小
	 * @return 如果返回值为-1,代表下载失败
	 */
	public long getDownLength() {
		return downLength;
	}
}
           

下载的调用如下:

其中downloadbar是一个进度条控件,SpecialActivity则是android中的一个控件

FileDownloader loader = new FileDownloader(SpecialActivity.this, path, dir, 5);
					int length = loader.getFileSize();//获取文件的长度
					downloadbar.setMax(length);
					loader.download(new DownloadProgressListener(){
						@Override
						/*public void onDownloadSize(int size) {//可以实时得到文件下载的长度
							Message msg = new Message();
							msg.what = 1;
							msg.getData().putInt("size", size);							
							handler.sendMessage(msg);
						}});*/
						public void onDownloadSize(int size,boolean upzip) {//可以实时得到文件下载的长度
							Message msg = new Message();
							msg.what = 1;
							msg.getData().putInt("size", size);							
							handler.sendMessage(msg);
						}});