An_多线程loadmore

多线程下载apk在网上有很多的例子,我们可以找到很多,在这里我提供一种例子来实现更新版本apk
首先添加网络权限;
下面写个net包
新建FileDownloadThread类

package com.example.zhoukao_zidingyiyuan_moredownload.net;

import android.util.Log;

import java.io.BufferedInputStream;
import java.io.File;
import java.io.IOException;
import java.io.RandomAccessFile;
import java.net.URL;
import java.net.URLConnection;

/**
 * 作者:author
 * 时间 :
 * 说明:
 */

public class FileDownloadThread extends Thread {
    private static final String TAG = FileDownloadThread.class.getSimpleName();
    /** 当前下载是否完成 */
    private boolean isCompleted = false;
    /** 当前下载文件长度 */
    private int downloadLength = 0;
    /** 文件保存路径 */
    private File file;
    /** 文件下载路径 */
    private URL downloadUrl;
    /** 当前下载线程ID */
    private int threadId;
    /** 线程下载数据长度 */
    private int blockSize;

    /**
     *
     * @param url:文件下载地址
     * @param file:文件保存路径
     * @param blocksize:下载数据长度
     * @param threadId:线程ID
     */
    public FileDownloadThread(URL downloadUrl, File file, int blocksize,
                              int threadId) {
        this.downloadUrl = downloadUrl;
        this.file = file;
        this.threadId = threadId;
        this.blockSize = blocksize;
    }

    @Override
    public void run() {
        BufferedInputStream bis = null;
        RandomAccessFile raf = null;
        try {
            URLConnection conn = downloadUrl.openConnection();
            conn.setAllowUserInteraction(true);
            int startPos = blockSize * (threadId - 1);//开始位置
            int endPos = blockSize * threadId - 1;//结束位置
            //设置当前线程下载的起点、终点
            conn.setRequestProperty("Range", "bytes=" + startPos + "-" + endPos);
            System.out.println(Thread.currentThread().getName() + "  bytes="
                    + startPos + "-" + endPos);

            byte[] buffer = new byte[1024];
            bis = new BufferedInputStream(conn.getInputStream());

            raf = new RandomAccessFile(file, "rwd");
            raf.seek(startPos);
            int len;
            while ((len = bis.read(buffer, 0, 1024)) != -1) {
                raf.write(buffer, 0, len);
                downloadLength += len;
            }
            isCompleted = true;
            Log.d(TAG, "current thread task has finished,all size:"
                    + downloadLength);

        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            if (bis != null) {
                try {
                    bis.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
            if (raf != null) {
                try {
                    raf.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }
    }
    /**
     * 线程文件是否下载完毕
     */
    public boolean isCompleted() {
        return isCompleted;
    }
    /**
     * 线程下载文件长度
     */
    public int getDownloadLength() {
        return downloadLength;
    }
}

通过接口回调在Activity里面点击条目跳转到另一个Activity(跳转时intent传 视频的网址接口)

 RvAdapter rvAdapter = new RvAdapter(MoreActivity.this, list);
        mRv.setAdapter(rvAdapter);
        rvAdapter.setOnItemClickListener(new RvAdapter.OnItemClickListener() {
            @Override
            public void onItemClick(View view, int positon) {
                String urlmovie = list.get(positon).getVedio_url();
                Toast.makeText(MoreActivity.this,urlmovie,Toast.LENGTH_SHORT).show();
                Intent intent = new Intent(MoreActivity.this,DownloadActivity.class);
                intent.putExtra("urlmovie",urlmovie);
                Log.i("------", "onItemClick: "+urlmovie);
                startActivity(intent);

            }
        });

DownloadActivity

package com.example.zhoukao_zidingyiyuan_moredownload;

import android.annotation.SuppressLint;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.os.Environment;
import android.os.Handler;
import android.os.Message;
import android.support.v7.app.AppCompatActivity;
import android.util.Log;
import android.view.View;
import android.widget.Button;
import android.widget.MediaController;
import android.widget.ProgressBar;
import android.widget.TextView;
import android.widget.Toast;
import android.widget.VideoView;

import com.example.zhoukao_zidingyiyuan_moredownload.net.FileDownloadThread;

import java.io.File;
import java.io.IOException;
import java.net.MalformedURLException;
import java.net.URL;
import java.net.URLConnection;

import butterknife.BindView;
import butterknife.ButterKnife;

public class DownloadActivity extends AppCompatActivity implements View.OnClickListener{

    private static final String TAG = DownloadActivity.class.getSimpleName();
    @BindView(R.id.download_btn)
    Button downloadBtn;
    @BindView(R.id.download_progress)
    ProgressBar downloadProgress;
    @BindView(R.id.download_message)
    TextView downloadMessage;
    @BindView(R.id.other_vdv)
    VideoView otherVdv;
    private TextView mMessageView;
    /**
     * 显示下载进度ProgressBar
     */
    private ProgressBar mProgressbar;
    private String name;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_download);
        ButterKnife.bind(this);
        Intent intent = getIntent();
        //传值
        name = intent.getStringExtra("urlmovie");
        Log.i("name***", "onCreate: "+name);
        findViewById(R.id.download_btn).setOnClickListener(this);
        mMessageView = (TextView) findViewById(R.id.download_message);
        mProgressbar = (ProgressBar) findViewById(R.id.download_progress);

    }

    @Override
    public void onClick(View v) {
        if (v.getId() == R.id.download_btn) {
            Toast.makeText(DownloadActivity.this,"onclick",Toast.LENGTH_SHORT).show();
            doDownload();
        }
    }
    /**
     * 使用Handler更新UI界面信息
     */
    @SuppressLint("HandlerLeak")
    Handler mHandler = new Handler() {
        @Override
        public void handleMessage(Message msg) {

            mProgressbar.setProgress(msg.getData().getInt("size"));

            float temp = (float) mProgressbar.getProgress()
                    / (float) mProgressbar.getMax();

            int progress = (int) (temp * 100);
            if (progress == 100) {
                Toast.makeText(DownloadActivity.this, "下载完成!", Toast.LENGTH_LONG).show();
                MediaController media= new MediaController(DownloadActivity.this);
                Uri uri = Uri.parse(name);
                otherVdv.setVideoURI(uri);
                otherVdv.setMediaController(media);
                otherVdv.start();




            }
            mMessageView.setText("下载进度:" + progress + " %");

        }
    };
    /**
     * 下载准备工作,获取SD卡路径、开启线程
     */
    private void doDownload() {
        // 获取SD卡路径
        String path = Environment.getExternalStorageDirectory()
                + "/amosdownload/";
        File file = new File(path);
        // 如果SD卡目录不存在创建
        if (!file.exists()) {
            file.mkdir();
        }
        // 设置progressBar初始化
        mProgressbar.setProgress(0);

        // 简单起见,我先把URL和文件名称写死,其实这些都可以通过HttpHeader获取到
        String downloadUrl = name;
        String fileName = "shipin.mp4";
        int threadNum = 5;
        String filepath = path + fileName;
        Log.d(TAG, "download file  path:" + filepath);
        downloadTask task = new downloadTask(downloadUrl, threadNum, filepath);
        task.start();
    }
    /**
     * 多线程文件下载
     *
     * @author yangxiaolong
     * @2014-8-7
     */
    class downloadTask extends Thread {
        private String downloadUrl;// 下载链接地址
        private int threadNum;// 开启的线程数
        private String filePath;// 保存文件路径地址
        private int blockSize;// 每一个线程的下载量

        public downloadTask(String downloadUrl, int threadNum, String fileptah) {
            this.downloadUrl = downloadUrl;
            this.threadNum = threadNum;
            this.filePath = fileptah;
        }

        @Override
        public void run() {

            FileDownloadThread[] threads = new FileDownloadThread[threadNum];
            try {
                URL url = new URL(downloadUrl);
                Log.d(TAG, "download file http path:" + downloadUrl);
                URLConnection conn = url.openConnection();
                // 读取下载文件总大小
                int fileSize = conn.getContentLength();
                if (fileSize <= 0) {
                    System.out.println("读取文件失败");
                    return;
                }
                // 设置ProgressBar最大的长度为文件Size
                mProgressbar.setMax(fileSize);

                // 计算每条线程下载的数据长度
                blockSize = (fileSize % threadNum) == 0 ? fileSize / threadNum
                        : fileSize / threadNum + 1;

                Log.d(TAG, "fileSize:" + fileSize + "  blockSize:" + blockSize);

                File file = new File(filePath);
                for (int i = 0; i < threads.length; i++) {
                    // 启动线程,分别下载每个线程需要下载的部分
                    threads[i] = new FileDownloadThread(url, file, blockSize,
                            (i + 1));
                    threads[i].setName("Thread:" + i);
                    threads[i].start();
                }

                boolean isfinished = false;
                int downloadedAllSize = 0;
                while (!isfinished) {
                    isfinished = true;
                    // 当前所有线程下载总量
                    downloadedAllSize = 0;
                    for (int i = 0; i < threads.length; i++) {
                        downloadedAllSize += threads[i].getDownloadLength();
                        if (!threads[i].isCompleted()) {
                            isfinished = false;
                        }
                    }
                    // 通知handler去更新视图组件
                    Message msg = new Message();
                    msg.getData().putInt("size", downloadedAllSize);
                    mHandler.sendMessage(msg);
                    // Log.d(TAG, "current downloadSize:" + downloadedAllSize);
                    Thread.sleep(1000);// 休息1秒后再读取下载进度
                }
                Log.d(TAG, " all of downloadSize:" + downloadedAllSize);

            } catch (MalformedURLException e) {
                e.printStackTrace();
            } catch (IOException e) {
                e.printStackTrace();
            } catch (InterruptedException e) {
                e.printStackTrace();
            }

        }
    }
}

最后给出DownloadActivity 的布局:



    

drawable里面的布局进度条:
progressbar_horizontal_1.xml




    
    
    
    
    
        
            
        
    
    

    
        
            
        
    


RetrofitUtils

    @Streaming
    @POST("{fileName}")
    Call downloadFile(@Path("fileName") String fileName, @Header("Range") String range);
    @Streaming
    @POST("{fileName}")
    Call getFileLength(@Path("fileName") String fileName);

你可能感兴趣的:(An_多线程loadmore)