Android 多線程下載和斷點續(xù)傳

需要知識

1. Http請求頭 Range

讀取網(wǎng)絡(luò)下載文件的指定范圍的字節(jié)

2. RandomAccessFile

RandomAccessFile支持跳到文件任意位置讀寫數(shù)據(jù)

3. 記得添加和開啟權(quán)限

4. 高版本無法連接http網(wǎng)絡(luò)解決方案

具體代碼

1.開始和暫停下載

// 開始下載
    private void startDown(){
        Intent intent = new Intent(getActivity(), DownService.class);
        intent.setAction(DownService.ACTION_START);
        intent.putExtra("downUrl","https://download.java.net/openjdk/jdk9/ri/openjdk-9_src.zip");
        getActivity().startService(intent);
    }
// 暫停下載
    private void stopDown(){
        Intent intent = new Intent(getActivity(),DownService.class);
        intent.setAction(DownService.ACTIOn_STOP);
        getActivity().startService(intent);
    }

2.開啟下載服務(wù)

public class DownService extends Service {
    private static final String TAG = "DownService";
    public static final String ACTION_START = "ACTION_START";
    public static final String ACTIOn_STOP = "ACTION_PAUSE";
    public static final String DOWN_PATH = Environment.getExternalStorageDirectory().getAbsolutePath() + "/dahai/";
    public static final String DOWN_FILE_NAME = "aaa.zip";
    private String downUrl;
    private DownTask mDownTask;
    private int length;

    @Override
    public IBinder onBind(Intent intent) {
        // TODO: Return the communication channel to the service.
        throw new UnsupportedOperationException("Not yet implemented");
    }

    @Override
    public int onStartCommand(Intent intent, int flags, int startId) {
        String action = intent.getAction();

        if (action.equals(ACTION_START)) {
            downUrl = intent.getStringExtra("downUrl");
            new InitThread().start();
        } else if (action.equals(ACTIOn_STOP)) {
            Log.e(TAG,"停止下載");
            mDownTask.pause = true;
        }

        return super.onStartCommand(intent, flags, startId);
    }

    Handler handler = new Handler(new Handler.Callback() {
        @Override
        public boolean handleMessage(Message msg) {
            Log.e("zhy","開始下載");
            if (mDownTask == null)
                mDownTask = new DownTask(new File(DOWN_PATH,DOWN_FILE_NAME),downUrl,length);
            mDownTask.startDown();
            return true;
        }
    });

    class InitThread extends Thread {
        HttpURLConnection connection;
        RandomAccessFile raf;

        @Override
        public void run() {
            try {
                URL url = new URL(downUrl);
                connection = (HttpURLConnection) url.openConnection();
                connection.setConnectTimeout(3000);
                if (connection.getResponseCode() == HttpURLConnection.HTTP_OK) {
                    // 獲取文件長度
                    length = connection.getContentLength();
                    Log.e("zhy","文件的長度 == " + length);
                }

                if (length < 0) {
                    return;
                }

                File dir = new File(DOWN_PATH);
                if (!dir.exists()) {
                    boolean mkdir = dir.mkdir();
                    Log.e("zhy","文件創(chuàng)建成功與否:" + mkdir);
                }
                Log.e("zhy",dir.getAbsolutePath());
                // 創(chuàng)建本地文件
                File file = new File(DOWN_PATH,DOWN_FILE_NAME);
                raf = new RandomAccessFile(file,"rwd");
                raf.setLength(length);

                handler.obtainMessage(1).sendToTarget();
            }catch(MalformedURLException e){
                e.printStackTrace();
                Log.e("zhy",e.toString());
            } catch (IOException e) {
                e.printStackTrace();
                Log.e("zhy",e.toString());
            }
        }
    }
}

3.具體下載控制代碼

public class DownTask {
    private long startPos;
    private File downPath;
    private String downUrl;
    private long fileLength;
    // todo : 線程安全晃跺。。秕磷。。
    public boolean pause = false;

    public static ExecutorService executorService = Executors.newCachedThreadPool();
    List<ThreadInfo> threadInfos = new ArrayList<>();
    private List<DownThread> mThreadList = null;

    public DownTask(File downPath,String downUrl,long fileLength) {
        this.downPath = downPath;
        this.downUrl = downUrl;
        this.fileLength = fileLength;
    }

    public void startDown() {
        Log.e("zhy","開啟下載線程");
        pause = false;
        if (threadInfos.size() == 0) {
            long length = fileLength/3;
            for (int i = 0;i < 3;i++) {
                ThreadInfo threadInfo = new ThreadInfo(i,i * length,(i+1) * length -1,0);
                if (i + 1 == 3) {
                    threadInfo.setEnd(fileLength);
                }
                threadInfos.add(threadInfo);
            }
        }

        mThreadList = new ArrayList<>();
        for (ThreadInfo threadInfo : threadInfos) {
            DownThread t = new DownThread(threadInfo);
            executorService.execute(t);
            mThreadList.add(t);
        }

    }

    class DownThread extends Thread {
        private ThreadInfo threadInfo;
        private boolean isFinished;

        public DownThread(ThreadInfo threadInfo) {
            this.threadInfo = threadInfo;
        }

        @Override
        public void run() {
            InputStream is;
            RandomAccessFile raf;

            try {
                URL url = new URL(downUrl);
                HttpURLConnection urlConnection = (HttpURLConnection) url.openConnection();
                long start = threadInfo.getStart() + threadInfo.getFinished();
                urlConnection.setRequestProperty("Range","bytes=" + start + "-" + threadInfo.getEnd());
                raf = new RandomAccessFile(downPath, "rwd");
                raf.seek(startPos);

                if (urlConnection.getResponseCode() == HttpURLConnection.HTTP_PARTIAL) {
                    is = urlConnection.getInputStream();
                    byte[] buffer = new byte[4096];
                    int length = -1;
                    while ((length = is.read(buffer)) != -1) {
                        if (pause) {
                            // todo :數(shù)據(jù)需要保存到本地悦污。
                            return;
                        }

                        raf.write(buffer,0,length);
                        threadInfo.setFinished(threadInfo.getFinished() + length);
                        Log.e("zhy","線程" + threadInfo.getId() + "的下載進度 == " + threadInfo.getFinished());

                    }

                    // 標識線程執(zhí)行完畢
                    isFinished = true;
                    // 檢查下載任務(wù)是否完成
                    checkAllThreadFinished();
                    is.close();
                    raf.close();
                    urlConnection.disconnect();
                }
            } catch (MalformedURLException e) {
                e.printStackTrace();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
    }

    private void checkAllThreadFinished(){
        synchronized (this) {
            boolean allFinished = true;
            for (DownThread thread : mThreadList) {
                if (!thread.isFinished) {
                    allFinished = false;
                    break;
                }
            }
            if (allFinished) {
                Log.e("zhy","下載完成");
            }
        }

    }
}``
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末代芜,一起剝皮案震驚了整個濱河市策州,隨后出現(xiàn)的幾起案子瘸味,更是在濱河造成了極大的恐慌,老刑警劉巖够挂,帶你破解...
    沈念sama閱讀 206,214評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件旁仿,死亡現(xiàn)場離奇詭異,居然都是意外死亡孽糖,警方通過查閱死者的電腦和手機枯冈,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,307評論 2 382
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來办悟,“玉大人尘奏,你說我怎么就攤上這事〔◎龋” “怎么了炫加?”我有些...
    開封第一講書人閱讀 152,543評論 0 341
  • 文/不壞的土叔 我叫張陵,是天一觀的道長铺然。 經(jīng)常有香客問我俗孝,道長,這世上最難降的妖魔是什么魄健? 我笑而不...
    開封第一講書人閱讀 55,221評論 1 279
  • 正文 為了忘掉前任赋铝,我火速辦了婚禮,結(jié)果婚禮上沽瘦,老公的妹妹穿的比我還像新娘柬甥。我一直安慰自己,他們只是感情好其垄,可當我...
    茶點故事閱讀 64,224評論 5 371
  • 文/花漫 我一把揭開白布苛蒲。 她就那樣靜靜地躺著,像睡著了一般绿满。 火紅的嫁衣襯著肌膚如雪臂外。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,007評論 1 284
  • 那天喇颁,我揣著相機與錄音漏健,去河邊找鬼。 笑死橘霎,一個胖子當著我的面吹牛蔫浆,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播姐叁,決...
    沈念sama閱讀 38,313評論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼瓦盛,長吁一口氣:“原來是場噩夢啊……” “哼洗显!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起原环,我...
    開封第一講書人閱讀 36,956評論 0 259
  • 序言:老撾萬榮一對情侶失蹤挠唆,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后嘱吗,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體玄组,經(jīng)...
    沈念sama閱讀 43,441評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 35,925評論 2 323
  • 正文 我和宋清朗相戀三年谒麦,在試婚紗的時候發(fā)現(xiàn)自己被綠了俄讹。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,018評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡绕德,死狀恐怖患膛,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情迁匠,我是刑警寧澤剩瓶,帶...
    沈念sama閱讀 33,685評論 4 322
  • 正文 年R本政府宣布,位于F島的核電站城丧,受9級特大地震影響延曙,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜亡哄,卻給世界環(huán)境...
    茶點故事閱讀 39,234評論 3 307
  • 文/蒙蒙 一枝缔、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧蚊惯,春花似錦愿卸、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,240評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至宦焦,卻和暖如春发钝,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背波闹。 一陣腳步聲響...
    開封第一講書人閱讀 31,464評論 1 261
  • 我被黑心中介騙來泰國打工酝豪, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人精堕。 一個月前我還...
    沈念sama閱讀 45,467評論 2 352
  • 正文 我出身青樓孵淘,卻偏偏與公主長得像,于是被迫代替她去往敵國和親歹篓。 傳聞我的和親對象是個殘疾皇子瘫证,可洞房花燭夜當晚...
    茶點故事閱讀 42,762評論 2 345