public class MultiThreadDown {
static int ThreadCount = 4;
static String path = "http://192.168.1.104:8080/android/pdf.exe";
static long start = 0;
public static void main(String[] args) throws Exception {
URL url = new URL(path);
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
conn.setReadTimeout(5000);
conn.setRequestMethod("GET");
conn.setConnectTimeout(5000);
if (conn.getResponseCode() == 200) {
// 1.先获取请求资源的大小
int length = conn.getContentLength();
File file = new File("m.mpg");
// 生成临时文件
RandomAccessFile raf = new RandomAccessFile(file, "rwd");
// 设置临时文件的大小
raf.setLength(length);
raf.close();
// 计算每个线程应该要下载多少个字节
int size = length / ThreadCount;
start = System.currentTimeMillis();
for (int i = 0; i < ThreadCount; i++) {
// 计算线程下载的开始位置和结束位置
int startIndex = i * size;
int endIndex = (i + 1) * size - 1;
// 如果是最后一个线程,那么结束位置写死
if (i == (ThreadCount - 1)) {
endIndex = length - 1;
}
new DownThread(startIndex, endIndex, i).start();
}
}
}
}
class DownThread extends Thread {
int startIndex;
int endIndex;
int threadId;
public DownThread(int startIndex, int endIndex, int threadId) {
super();
this.startIndex = startIndex;
this.endIndex = endIndex;
this.threadId = threadId;
}
@Override
public void run() {
// 再次发送HTTP请求,下载源文件
try {
URL url = new URL(MultiThreadDown.path);
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
conn.setReadTimeout(5000);
conn.setRequestMethod("GET");
conn.setConnectTimeout(5000);
// 设置请求的数据的区间
conn.setRequestProperty("Range", "bytes=" + startIndex + "-"
+ endIndex);
// 请求部分数据,响应码为206
if (conn.getResponseCode() == 206) {
// 此时只有 1/threadcount数据
InputStream is = conn.getInputStream();
byte[] b = new byte[1024];
int len = 0;
long total = 0;
File file = new File("m.mpg");
RandomAccessFile raf = new RandomAccessFile(file, "rwd");
// 把文件的写入位置移动至startIndex
raf.seek(startIndex);
while ((len = is.read(b)) != -1) {
// 每次读取流里的数据写入临时文件
raf.write(b, 0, len);
total += len;
}
}
} catch (IOException e) {
e.printStackTrace();
}
}
}
android 多线程下载原理
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 1.普通单线程下载文件: 直接使用URLConnection.openStream();打开网络输入流,然后将流写...
- 一、为什么要使用多线程,多线程真的能提高效率吗? 1.1为什么要使用多线程 多线程编程的目的,就是"最大限度地利用...
- 效果图 白话分析: 多线程:肯定是多个线程咯断点:线程停止下载的位置续传:线程从停止下载的位置上继续下载,直到完成...
- 最近项目需要一个下载模块,要求多任务多线程断点下载还要通知栏提示,网上找了很多都没合适的,后面下了xutil做 成...
- 杨过一生有三个父亲,生父杨康,义父欧阳锋和精神上的父亲郭靖。尤其欧阳锋和杨过的关系,其实是金庸在神雕中布下的一个局...