亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

Java中如何實現下載多線程文件

發布時間:2020-11-10 17:04:14 來源:億速云 閱讀:158 作者:Leah 欄目:編程語言

今天就跟大家聊聊有關Java中如何實現下載多線程文件,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,希望大家根據這篇文章可以有所收獲。

Java實現多線程文件下載思路:

1、基本思路是將文件分段切割、分段傳輸、分段保存。

2、分段切割用到HttpUrlConnection對象的setRequestProperty("Range", "bytes=" + start + "-" + end)方法。

3、分段傳輸用到HttpUrlConnection對象的getInputStream()方法。

4、分段保存用到RandomAccessFile的seek(int start)方法。

5、創建指定長度的線程池,循環創建線程,執行下載操作。 

 首先,我們要先寫一個方法,方法的參數包含URL地址,保存的文件地址,切割后的文件開始位置和結束位置,這樣我們就能把分段文件下載到本地。并且這個方法要是run方法,這樣我們啟動線程時就直接執行該方法。

public class DownloadWithRange implements Runnable
  {
    private String urlLocation;

    private String filePath;

    private long start;

    private long end;

    DownloadWithRange(String urlLocation, String filePath, long start, long end)
    {
      this.urlLocation = urlLocation;
      this.filePath = filePath;
      this.start = start;
      this.end = end;
    }

    @Override
    public void run()
    {
      try
      {
        HttpURLConnection conn = getHttp();
        conn.setRequestProperty("Range", "bytes=" + start + "-" + end);

        File file = new File(filePath);
        RandomAccessFile out = null;
        if (file != null)
        {
          out = new RandomAccessFile(file, "rwd");
        }
        out.seek(start);
        InputStream in = conn.getInputStream();
        byte[] b = new byte[1024];
        int len = 0;
        while ((len = in.read(b)) != -1)
        {
          out.write(b, 0, len);
        }
        in.close();
        out.close();
      }
      catch (Exception e)
      {
        e.getMessage();
      }

    }

    public HttpURLConnection getHttp() throws IOException
    {
      URL url = null;
      if (urlLocation != null)
      {
        url = new URL(urlLocation);
      }
      HttpURLConnection conn = (HttpURLConnection) url.openConnection();
      conn.setReadTimeout(5000);
      conn.setRequestMethod("GET");

      return conn;
    }

  }

然后我們創建線程池,線程池的長度可以自定義,然后循環創建線程來執行請求,每條線程的請求開始位置和結束位置都不同,本地存儲的文件開始位置和請求開始位置相同,這樣就可以實現多線程下載了。

public class DownloadFileWithThreadPool
{
  public void getFileWithThreadPool(String urlLocation,String filePath, int poolLength) throws IOException
  {
    Executor threadPool = Executors.newFixedThreadPool(poolLength);
    
    long len = getContentLength(urlLocation);
    for(int i=0;i<poolLength;i++)
    {
      long start=i*len/poolLength;
      long end = (i+1)*len/poolLength-1;
      if(i==poolLength-1)
      {
        end =len;
      }
      DownloadWithRange download=new DownloadWithRange(urlLocation, filePath, start, end);
      threadPool.execute(download);
    }
  }

  public static long getContentLength(String urlLocation) throws IOException
  {
    URL url = null;
    if (urlLocation != null)
    {
      url = new URL(urlLocation);
    }
    HttpURLConnection conn = (HttpURLConnection) url.openConnection();
    conn.setReadTimeout(5000);
    conn.setRequestMethod("GET");
    long len = conn.getContentLength();

    return len;
  }

看完上述內容,你們對Java中如何實現下載多線程文件有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注億速云行業資訊頻道,感謝大家的支持。

向AI問一下細節

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

AI

乐亭县| 金塔县| 信丰县| 诸暨市| 鹿邑县| 长丰县| 颍上县| 南丹县| 买车| 天台县| 昌宁县| 东港市| 台江县| 秦皇岛市| 临朐县| 安泽县| 沧源| 中西区| 阿图什市| 偏关县| 阿克苏市| 蒙自县| 饶平县| 星子县| 文安县| 甘肃省| 洞口县| 敖汉旗| 开江县| 古田县| 陇南市| 方山县| 永川市| 阿克| 漠河县| 吉隆县| 绍兴县| 柳州市| 桑日县| 中阳县| 平湖市|