- 1、本文档共18页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
Java多线程断点下载
Java 多线程断点下载文件
基本原理:利用 URLConnection 获取要下载文件的长度、头部等相关信息,并设置响应
的头部信息。并且通过 URLConnection 获取输入流,将文件分成指定的块,每一块单独
开辟一个线程完成数据的读取、写入。通过输入流读取下载文件的信息,然后将读取的信息
用 RandomAccessFile 随机写入到本地文件中。同时,每个线程写入的数据都文件指针
也就是写入数据的长度,需要保存在一个临时文件中。这样当本次下载没有完成的时候,下
次下载的时候就从这个文件中读取上一次下载的文件长度,然后继续接着上一次的位置开始
下载。并且将本次下载的长度写入到这个文件中。
一、下载文件信息类、实体
封装即将下载资源的信息
package com.hoo.entity;
/**
* bfunction:/b 下载文件信息类
* @author hoojo
* @createDate 2011-9-21 下午05:14:58
* @file DownloadInfo.java
* @package com.hoo.entity
* @project MultiThreadDownLoad
* @blog /IBM_hoojo
* @email hoojo_@126.com
* @version 1.0
*/
public class DownloadInfo {
//下载文件url
private String url;
//下载文件名称
private String fileName;
//下载文件路径
private String filePath;
//分成多少段下载, 每一段用一个线程完成下载
private int splitter;
//下载文件默认保存路径
private final static String FILE_PATH = C:/temp;
//默认分块数、线程数
private final static int SPLITTER_NUM = 5;
public DownloadInfo() {
super();
}
/**
* @param url 下载地址
*/
public DownloadInfo(String url) {
this(url, null, null, SPLITTER_NUM);
}
/**
* @param url 下载地址url
* @param splitter 分成多少段或是多少个线程下载
*/
public DownloadInfo(String url, int splitter) {
this(url, null, null, splitter);
}
/***
* @param url 下载地址
* @param fileName 文件名称
* @param filePath 文件保存路径
* @param splitter 分成多少段或是多少个线程下载
*/
public DownloadInfo(String url, String fileName, String filePath, int
splitter) {
super();
if (url == null || .equals(url)) {
throw new RuntimeException(url is not null!);
}
this.url = url;
this.fileName = (fileName == null || .equals(fileName)) ?
getFileName(url) : fileName;
this.filePath = (filePath == null || .equals(filePath)) ?
FILE_PATH : filePath;
this.splitter = (splitter 1) ? SPLITTER_NUM : splitter;
}
/**
* bfunction:/b 通过url获得文件名称
* @author hoojo
* @createDate 2011-9-30 下午05:00:00
* @param url
* @return
*/
private String getFileName(String url) {
您可能关注的文档
- Honey@home A New Approach to Large-Scale Threat Monitoring.pdf
- HONDA公司微型燃气涡喷发电机.pdf
- Hot water freeze quickly good for share.ppt
- How a Secure and Open Mobile Agent Framework Suits Electronic Commerce Applications.pdf
- Honeywell (Modules+Specification).pdf
- How do the grains slide in fine-grained zirconia polycrystals at high temperature.pdf
- How developers copy.pdf
- How e-commerce is transforming and internationalizing service industries.pdf
- How good is the turbid medium-based app.pdf
- How novel are the chemical weapons of garlic mustard in North American forest understories.pdf
文档评论(0)