多線程下載文件

有個朋友須要個多線程如今的例子,就幫忙實現了,在此分享下~java

先說下原理,原理明白了,其實很簡單:服務器

a、對於網絡上的一個資源,首先發送一個請求,從返回的Content-Length中回去須要下載文件的大小,而後根據文件大小建立一個文件。網絡

 

[java] view plain copy多線程

 在CODE上查看代碼片派生到個人代碼片

  1. this.fileSize = conn.getContentLength();// 根據響應獲取文件大小  
  2. File dir = new File(dirStr);  
  3. this.localFile = new File(dir, filename);  
  4. RandomAccessFile raf = new RandomAccessFile(this.localFile, "rw");  
  5. raf.setLength(fileSize);  
  6. raf.close();  

 

b、根據線程數和文件大小,爲每一個線程分配下載的字節區間,而後每一個線程向服務器發送請求,獲取這段字節區間的文件內容。app

 

[java] view plain copydom

 在CODE上查看代碼片派生到個人代碼片

  1. conn.setRequestProperty("Range", "bytes=" + startPos + "-"  
  2.                         + endPos);// 設置獲取實體數據的範圍  

 

c、利用RandomAccessFile的seek方法,多線程同時往一個文件中寫入字節。ide

 

[java] view plain copy測試

 在CODE上查看代碼片派生到個人代碼片

  1. raf.seek(startPos);  
  2. while ((len = is.read(buf)) != -1)  
  3. {  
  4.     raf.write(buf, 0, len);  
  5. }  

分析完了原理就很簡單了,我封裝了一個類,利用這個類的實例進行下載,所需參數:下載資源的URI, 本地文件路徑,線程的數量。this

 

 

[java] view plain copyurl

 在CODE上查看代碼片派生到個人代碼片

  1. package com.zhy.mutilthread_download;  
  2.   
  3. import java.io.File;  
  4. import java.io.IOException;  
  5. import java.io.InputStream;  
  6. import java.io.RandomAccessFile;  
  7. import java.net.HttpURLConnection;  
  8. import java.net.URL;  
  9.   
  10. public class MultipartThreadDownloador  
  11. {  
  12.   
  13.     /** 
  14.      * 須要下載資源的地址 
  15.      */  
  16.     private String urlStr;  
  17.     /** 
  18.      * 下載的文件 
  19.      */  
  20.     private File localFile;  
  21.     /** 
  22.      * 須要下載文件的存放的本地文件夾路徑 
  23.      */  
  24.     private String dirStr;  
  25.     /** 
  26.      * 存儲到本地的文件名 
  27.      */  
  28.     private String filename;  
  29.   
  30.     /** 
  31.      * 開啓的線程數量 
  32.      */  
  33.     private int threadCount;  
  34.     /** 
  35.      * 下載文件的大小 
  36.      */  
  37.     private long fileSize;  
  38.   
  39.     public MultipartThreadDownloador(String urlStr, String dirStr,  
  40.             String filename, int threadCount)  
  41.     {  
  42.         this.urlStr = urlStr;  
  43.         this.dirStr = dirStr;  
  44.         this.filename = filename;  
  45.         this.threadCount = threadCount;  
  46.     }  
  47.   
  48.     public void download() throws IOException  
  49.     {  
  50.         createFileByUrl();  
  51.   
  52.         /** 
  53.          * 計算每一個線程須要下載的數據長度 
  54.          */  
  55.         long block = fileSize % threadCount == 0 ? fileSize / threadCount  
  56.                 : fileSize / threadCount + 1;  
  57.   
  58.         for (int i = 0; i < threadCount; i++)  
  59.         {  
  60.             long start = i * block;  
  61.             long end = start + block >= fileSize ? fileSize : start + block - 1;  
  62.   
  63.             new DownloadThread(new URL(urlStr), localFile, start, end).start();  
  64.         }  
  65.   
  66.     }  
  67.   
  68.     /** 
  69.      * 根據資源的URL獲取資源的大小,以及在本地建立文件 
  70.      */  
  71.     public void createFileByUrl() throws IOException  
  72.     {  
  73.         URL url = new URL(urlStr);  
  74.         HttpURLConnection conn = (HttpURLConnection) url.openConnection();  
  75.         conn.setConnectTimeout(15 * 1000);  
  76.         conn.setRequestMethod("GET");  
  77.         conn.setRequestProperty(  
  78.                 "Accept",  
  79.                 "image/gif, image/jpeg, image/pjpeg, image/pjpeg, application/x-shockwave-flash, application/xaml+xml, application/vnd.ms-xpsdocument, application/x-ms-xbap, application/x-ms-application, application/vnd.ms-excel, application/vnd.ms-powerpoint, application/msword, */*");  
  80.         conn.setRequestProperty("Accept-Language", "zh-CN");  
  81.         conn.setRequestProperty("Referer", urlStr);  
  82.         conn.setRequestProperty("Charset", "UTF-8");  
  83.         conn.setRequestProperty(  
  84.                 "User-Agent",  
  85.                 "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)");  
  86.         conn.setRequestProperty("Connection", "Keep-Alive");  
  87.         conn.connect();  
  88.   
  89.         if (conn.getResponseCode() == 200)  
  90.         {  
  91.             this.fileSize = conn.getContentLength();// 根據響應獲取文件大小  
  92.             if (fileSize <= 0)  
  93.                 throw new RuntimeException(  
  94.                         "the file that you download has a wrong size ... ");  
  95.             File dir = new File(dirStr);  
  96.             if (!dir.exists())  
  97.                 dir.mkdirs();  
  98.             this.localFile = new File(dir, filename);  
  99.             RandomAccessFile raf = new RandomAccessFile(this.localFile, "rw");  
  100.             raf.setLength(fileSize);  
  101.             raf.close();  
  102.   
  103.             System.out.println("須要下載的文件大小爲 :" + this.fileSize + " , 存儲位置爲: "  
  104.                     + dirStr + "/" + filename);  
  105.   
  106.         } else  
  107.         {  
  108.             throw new RuntimeException("url that you conneted has error ...");  
  109.         }  
  110.     }  
  111.   
  112.     private class DownloadThread extends Thread  
  113.     {  
  114.         /**  
  115.          * 下載文件的URI  
  116.          */  
  117.         private URL url;  
  118.         /** 
  119.          * 存的本地路徑 
  120.          */  
  121.         private File localFile;  
  122.         /** 
  123.          * 是否結束 
  124.          */  
  125.         private boolean isFinish;  
  126.         /** 
  127.          * 開始的位置 
  128.          */  
  129.         private Long startPos;  
  130.         /** 
  131.          * 結束位置 
  132.          */  
  133.         private Long endPos;  
  134.   
  135.         public DownloadThread(URL url, File savefile, Long startPos, Long endPos)  
  136.         {  
  137.             this.url = url;  
  138.             this.localFile = savefile;  
  139.             this.startPos = startPos;  
  140.             this.endPos = endPos;  
  141.         }  
  142.   
  143.         @Override  
  144.         public void run()  
  145.         {  
  146.             System.out.println(Thread.currentThread().getName() + "開始下載...");  
  147.             try  
  148.             {  
  149.                 HttpURLConnection conn = (HttpURLConnection) url  
  150.                         .openConnection();  
  151.                 conn.setConnectTimeout(15 * 1000);  
  152.                 conn.setRequestMethod("GET");  
  153.                 conn.setRequestProperty(  
  154.                         "Accept",  
  155.                         "image/gif, image/jpeg, image/pjpeg, image/pjpeg, application/x-shockwave-flash, application/xaml+xml, application/vnd.ms-xpsdocument, application/x-ms-xbap, application/x-ms-application, application/vnd.ms-excel, application/vnd.ms-powerpoint, application/msword, */*");  
  156.                 conn.setRequestProperty("Accept-Language", "zh-CN");  
  157.                 conn.setRequestProperty("Referer", url.toString());  
  158.                 conn.setRequestProperty("Charset", "UTF-8");  
  159.                 conn.setRequestProperty("Range", "bytes=" + startPos + "-"  
  160.                         + endPos);// 設置獲取實體數據的範圍  
  161.   
  162.                 conn.setRequestProperty(  
  163.                         "User-Agent",  
  164.                         "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)");  
  165.                 conn.setRequestProperty("Connection", "Keep-Alive");  
  166.                 conn.connect();  
  167.   
  168.                 /**  
  169.                  * 表明服務器已經成功處理了部分GET請求  
  170.                  */  
  171.                 if (conn.getResponseCode() == 206)  
  172.                 {  
  173.                     InputStream is = conn.getInputStream();  
  174.                     int len = 0;  
  175.                     byte[] buf = new byte[1024];  
  176.   
  177.                     RandomAccessFile raf = new RandomAccessFile(localFile,  
  178.                             "rwd");  
  179.                     raf.seek(startPos);  
  180.                     while ((len = is.read(buf)) != -1)  
  181.                     {  
  182.                         raf.write(buf, 0, len);  
  183.                     }  
  184.                     raf.close();  
  185.                     is.close();  
  186.                     System.out.println(Thread.currentThread().getName()  
  187.                             + "完成下載  : " + startPos + " -- " + endPos);  
  188.                     this.isFinish = true;  
  189.                 } else  
  190.                 {  
  191.                     throw new RuntimeException(  
  192.                             "url that you conneted has error ...");  
  193.                 }  
  194.             } catch (IOException e)  
  195.             {  
  196.                 e.printStackTrace();  
  197.             }  
  198.         }  
  199.   
  200.     }  
  201.   
  202.       
  203.   
  204. }  


createFileByUrl方法,就是咱們上述的原理的步驟1,獲得文件大小和建立本地文件。我在程序使用了一個內部類DownloadThread繼承Thread,專門負責下載。download()方法,根據線程數量和文件大小計算每一個線程須要下載的字節區間,而後開啓線程去下載。

 

服務器端:我就扔了幾個文件在Tomcat根目錄作實驗,下面是測試代碼:

 

[java] view plain copy

 在CODE上查看代碼片派生到個人代碼片

  1. package com.zhy.mutilthread_download;  
  2.   
  3. import java.io.IOException;  
  4.   
  5. public class Test  
  6. {  
  7.   
  8.     public static void main(String[] args)  
  9.     {  
  10.         try  
  11.         {  
  12.             new MultipartThreadDownloador("http://localhost:8080/nexus.zip",  
  13.                     "f:/backup/nexus", "nexus.zip", 2).download();  
  14.         } catch (IOException e)  
  15.         {  
  16.             e.printStackTrace();  
  17.         }  
  18.   
  19.     }  
  20. }  


輸出結果:

 

 

[java] view plain copy

 在CODE上查看代碼片派生到個人代碼片

  1. 須要下載的文件大小爲 :31143237 , 存儲位置爲: f:/backup/nexus/nexus.zip  
  2. Thread-1開始下載...  
  3. Thread-2開始下載...  
  4. Thread-3開始下載...  
  5. Thread-4開始下載...  
  6. Thread-4完成下載  : 23357430 -- 31143237  
  7. Thread-2完成下載  : 7785810 -- 15571619  
  8. Thread-1完成下載  : 0 -- 7785809  
  9. Thread-3完成下載  : 15571620 -- 23357429  


截圖:

 

 

ok,多線程下載介紹完畢,若是代碼設計不合理,以及方法使用錯誤,歡迎各位留言,,,

相關文章
相關標籤/搜索