利用线程 实现对百度网盘的一个简单下载

首先我们先对这个题目进行分析:
在这里插入图片描述
下面是代码:

public class Download extends Thread{

    private int startIndex; //线程开始下载位置
    private int endIndex; //线程结束下载位置
    private int threadId; //线程编号

    public Download(int startIndex, int endIndex, int threadId) {
        this.startIndex = startIndex;
        this.endIndex = endIndex;
        this.threadId = threadId;
    }

    @Override
    public void run() {
        try {
            //统一资源管理器  ,可以直接打开 网络地址
            URL url  = new URL(DownloadTest.path);
            //因为基于http请求 , 获取HttpURLConnection   , 获取网络链接对象 ,就可以和服务器建立链接
            HttpURLConnection conn = (HttpURLConnection) url.openConnection();
            //设置一些参数
            conn.setRequestMethod("GET");   //get请求
            conn.setConnectTimeout(5000);   //链接超时
            conn.setReadTimeout(5000);      //读取超时
            conn.setRequestProperty("Range","bytes="+startIndex+"-"+endIndex);//设置 范围 请求参数  , 获取 线程下载范围

            if(conn.getResponseCode()==206){    //部分数据 ok
                //取出 链接中的 数据
                InputStream is = conn.getInputStream(); //存储的是服务器上面  百度客户端数据
                //提供一个接收地方(本地接收)
                File file = new File("BaiduNetdisk_6.9.7.4.exe");
                //输出流  ,开始写数据  ,随机读写 流
                RandomAccessFile raf = new RandomAccessFile(file,"rwd");
                raf.seek(startIndex); //跳转到 每个线程 开始读取的位置
                System.out.println("线程:"+threadId+" 开始的位置:"+startIndex+"---"+" 结束位置"+endIndex);
                int len = 0;
                byte[] buf = new byte[1024];
                while((len=is.read(buf))!=-1){
                    raf.write(buf,0,len);
                }
                System.out.println("线程:"+threadId+"下载完毕...");
                raf.close();
                DownloadTest.finishedThread++;
                //如果所有线程都下载完毕 ,让finishedThread 为0
                synchronized (DownloadTest.path){
                    DownloadTest.finishedThread=0;
                }
            }
        } catch (MalformedURLException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}
public class DownloadTest {

    static String path = "http://softforspeed.51xiazai.cn/down/BaiduNetdisk_6.9.7.4.exe";

    static int threadCount = 3; //3个线程
    static int finishedThread = 0;  //和 线程数 有关  ,记录每一个线程是否执行完毕


    public static void main(String[] args) throws IOException {

        //统一资源管理器  ,可以直接打开 网络地址
        URL url  = new URL(DownloadTest.path);
        //因为基于http请求 , 获取HttpURLConnection   , 获取网络链接对象 ,就可以和服务器建立链接
        HttpURLConnection conn = (HttpURLConnection) url.openConnection();
        //设置一些参数
        conn.setRequestMethod("GET");   //get请求
        conn.setConnectTimeout(5000);   //链接超时
        conn.setReadTimeout(5000);      //读取超时

        if(conn.getResponseCode()==200){
            //1. 拿到 文件总长 (总大小)
            int contentLength = conn.getContentLength();
            //2. 每个线程下载的大小
            int size = contentLength/threadCount;
            //3.开启线程执行下载
            for (int i = 0; i < threadCount; i++) {
                int startIndex = i*size;        // (i从0开始 )
                int endIndex = (i+1)*size;     //结束位置
                Download thread = new Download(startIndex,endIndex,i);
                thread.start();
            }
        }
    }
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值