溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android開發(fā)中使用多線程怎么樣實現(xiàn)一個斷點續(xù)傳功能

發(fā)布時間:2020-11-20 14:14:50 來源:億速云 閱讀:155 作者:Leah 欄目:開發(fā)技術(shù)

Android開發(fā)中使用多線程怎么樣實現(xiàn)一個斷點續(xù)傳功能?針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

布局文件activity_main.xml:

<&#63;xml version="1.0" encoding="utf-8"&#63;>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:tools="http://schemas.android.com/tools"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  tools:context=".MainActivity">

  <LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <EditText
      android:id="@+id/et_path"
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:hint="請輸入下載路徑"
      android:text="http://10.173.29.234/test.exe" />

    <EditText
      android:id="@+id/et_threadCount"
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:hint="請輸入線程數(shù)量" />

    <Button
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:onClick="click"
      android:text="下載" />

    <LinearLayout
      android:id="@+id/ll_pb"
      android:layout_width="match_parent"
      android:layout_height="match_parent"
      android:background="#455eee"
      android:orientation="vertical">

    </LinearLayout>
  </LinearLayout>

</android.support.constraint.ConstraintLayout>

創(chuàng)建布局文件,用來動態(tài)顯示每個線程的進度條

layout.xml:

<&#63;xml version="1.0" encoding="utf-8"&#63;>
<ProgressBar xmlns:android="http://schemas.android.com/apk/res/android"
  android:id="@+id/progressBar"
  
  android:layout_width="match_parent"
  android:layout_height="wrap_content" />

MainActivity.java:

import...;

public class MainActivity extends AppCompatActivity {

  private EditText et_path;
  private EditText et_threadCount;
  private LinearLayout ll_pb;
  private String path;

  private static int runningThread;// 代表正在運行的線程
  private int threadCount;
  private List<ProgressBar> pbList;//集合存儲進度條的引用

  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    et_path = findViewById(R.id.et_path);
    et_threadCount = findViewById(R.id.et_threadCount);
    ll_pb = findViewById(R.id.ll_pb);
    //添加一個進度條的引用
    pbList = new ArrayList<ProgressBar>();
  }

  //點擊按鈕實現(xiàn)下載邏輯
  public void click(View view) {
    //獲取下載路徑
    path = et_path.getText().toString().trim();
    //獲取線程數(shù)量
    String threadCounts = et_threadCount.getText().toString().trim();
    //移除以前的進度條添加新的進度條
    ll_pb.removeAllViews();
    threadCount = Integer.parseInt(threadCounts);
    pbList.clear();
    for (int i = 0; i < threadCount; i++) {
      ProgressBar v = (ProgressBar) View.inflate(getApplicationContext(), R.layout.layout, null);

      //把v添加到幾何中
      pbList.add(v);

      //動態(tài)獲取進度條
      ll_pb.addView(v);
    }

    //java邏輯移植
    new Thread() {
      @Override
      public void run() {
        /*************/
        System.out.println("你好");
        try {
          URL url = new URL(path);
          HttpURLConnection conn = (HttpURLConnection) url.openConnection();
          conn.setRequestMethod("GET");
          conn.setConnectTimeout(5000);
          int code = conn.getResponseCode();
          if (code == 200) {
            int length = conn.getContentLength();
            // 把運行線程的數(shù)量賦值給runningThread
            runningThread = threadCount;

            System.out.println("length=" + length);
            // 創(chuàng)建一個和服務器的文件一樣大小的文件,提前申請空間
            RandomAccessFile randomAccessFile = new RandomAccessFile(getFileName(path), "rw");
            randomAccessFile.setLength(length);
            // 算出每個線程下載的大小
            int blockSize = length / threadCount;
            // 計算每個線程下載的開始位置和結(jié)束位置
            for (int i = 0; i < length; i++) {
              int startIndex = i * blockSize;// 開始位置
              int endIndex = (i + 1) * blockSize;// 結(jié)束位置
              // 特殊情況就是最后一個線程
              if (i == threadCount - 1) {
                // 說明是最后一個線程
                endIndex = length - 1;
              }
              // 開啟線程去服務器下載
              DownLoadThread downLoadThread = new DownLoadThread(startIndex, endIndex, i);
              downLoadThread.start();

            }

          }
        } catch (MalformedURLException e) {
          // TODO Auto-generated catch block
          e.printStackTrace();
        } catch (IOException e) {
          // TODO Auto-generated catch block
          e.printStackTrace();
        }
        /*************/
      }
    }.start();

  }

  private class DownLoadThread extends Thread {
    // 通過構(gòu)造方法吧每個線程的開始位置和結(jié)束位置傳進來
    private int startIndex;
    private int endIndex;
    private int threadID;
    private int PbMaxSize;//代表當前下載(進度條)的最大值
    private int pblastPosition;//如果中斷過,這是進度條上次的位置

    public DownLoadThread(int startIndex, int endIndex, int threadID) {
      this.startIndex = startIndex;
      this.endIndex = endIndex;
      this.threadID = threadID;

    }

    @Override
    public void run() {
      // 實現(xiàn)去服務器下載文件
      try {
        //計算進度條最大值
        PbMaxSize = endIndex - startIndex;
        URL url = new URL(path);
        HttpURLConnection conn = (HttpURLConnection) url.openConnection();
        conn.setRequestMethod("GET");
        conn.setConnectTimeout(5000);
        // 如果中間斷過,接著上次的位置繼續(xù)下載,聰慧文件中讀取上次下載的位置
        File file = new File(getFileName(path) + threadID + ".txt");
        if (file.exists() && file.length() > 0) {
          FileInputStream fis = new FileInputStream(file);
          BufferedReader bufr = new BufferedReader(new InputStreamReader(fis));
          String lastPosition = bufr.readLine();
          int lastPosition1 = Integer.parseInt(lastPosition);

          //賦值給進度條位置
          pblastPosition = lastPosition1 - startIndex;
          // 改變一下startIndex的值
          startIndex = lastPosition1 + 1;
          System.out.println("線程id:" + threadID + "真實下載的位置:" + lastPosition + "-------" + endIndex);

          bufr.close();
          fis.close();

        }

        conn.setRequestProperty("Range", "bytes=" + startIndex + "-" + endIndex);
        int code = conn.getResponseCode();
        if (code == 206) {
          // 隨機讀寫文件對象
          RandomAccessFile raf = new RandomAccessFile(getFileName(path), "rw");
          // 每個線程從自己的位置開始寫

          raf.seek(startIndex);
          InputStream in = conn.getInputStream();
          // 把數(shù)據(jù)寫到文件中
          int len = -1;
          byte[] buffer = new byte[1024];
          int totle = 0;// 代表當前線程下載的大小
          while ((len = in.read(buffer)) != -1) {
            raf.write(buffer, 0, len);
            totle += len;

            // 實現(xiàn)斷點續(xù)傳就是把當前線程下載的位置保存起來,下次再下載的時候按照上次下載的位置繼續(xù)下載
            int currentThreadPosition = startIndex + totle;// 存到一個txt文本中
            // 用來存儲當前線程當前下載的位置
            RandomAccessFile raff = new RandomAccessFile(getFileName(path) + threadID + ".txt", "rwd");
            raff.write(String.valueOf(currentThreadPosition).getBytes());
            raff.close();

            //設置進度條當前的進度
            pbList.get(threadID).setMax(PbMaxSize);
            pbList.get(threadID).setProgress(pblastPosition + totle);
          }
          raf.close();
          System.out.println("線程ID:" + threadID + "下載完成");
          // 將產(chǎn)生的txt文件刪除,每個線程下載完成的具體時間不知道
          synchronized (DownLoadThread.class) {
            runningThread--;
            if (runningThread == 0) {
              //說明線程執(zhí)行完畢
              for (int i = 0; i < threadCount; i++) {

                File filedel = new File(getFileName(path) + i + ".txt");
                filedel.delete();
              }

            }

          }

        }
      } catch (MalformedURLException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
      } catch (IOException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
      }

    }
  }

  public String getFileName(String path) {
    int start = path.lastIndexOf("/") + 1;
    String subString = path.substring(start);
    String fileName = "/data/data/com.lgqrlchinese.heima76android_11_mutildownload/" + subString;
    return fileName;

  }
}

在清單文件中添加以下權(quán)限

   <uses-permission android:name="android.permission.INTERNET"/>
   <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>

關于Android開發(fā)中使用多線程怎么樣實現(xiàn)一個斷點續(xù)傳功能問題的解答就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業(yè)資訊頻道了解更多相關知識。

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI