关键词搜索

源码搜索 ×
×

Java 实现断点续传 (HTTP)

发布2013-12-17浏览4266次

详情内容

公司需要用Java做断点续传的实现,没有接触过,不过根据自己的理解就是文件接着上次传输的继续完成传输,具体的操作看到IBM这位仁兄的例子。

原文地址:http://www.ibm.com/developerworks/cn/java/joy-down/index.html

1、断点续传的原理

其实断点续传的原理很简单,就是在 Http 的请求上和一般的下载有所不同而已。 
打个比方,浏览器请求服务器上的一个文时,所发出的请求如下: 
假设服务器域名为 wwww.sjtu.edu.cn,文件名为 down.zip。 

GET /down.zip HTTP/1.1 
Accept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, application/vnd.ms- 
excel, application/msword, application/vnd.ms-powerpoint, */* 
Accept-Language: zh-cn 
Accept-Encoding: gzip, deflate 
User-Agent: Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0) 
Connection: Keep-Alive

服务器收到请求后,按要求寻找请求的文件,提取文件的信息,然后返回给浏览器,返回信息如下:

200 
Content-Length=106786028 
Accept-Ranges=bytes 
Date=Mon, 30 Apr 2001 12:56:11 GMT 
ETag=W/"02ca57e173c11:95b" 
Content-Type=application/octet-stream 
Server=Microsoft-IIS/5.0 
Last-Modified=Mon, 30 Apr 2001 12:56:11 GMT

所谓断点续传,也就是要从文件已经下载的地方开始继续下载。所以在客户端浏览器传给 Web 服务器的时候要多加一条信息 -- 从哪里开始。 
下面是用自己编的一个"浏览器"来传递请求信息给 Web 服务器,要求从 2000070 字节开始。 

GET /down.zip HTTP/1.0 
User-Agent: NetFox 
RANGE: bytes=2000070- 
Accept: text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2

仔细看一下就会发现多了一行 RANGE: bytes=2000070- 
这一行的意思就是告诉服务器 down.zip 这个文件从 2000070 字节开始传,前面的字节不用传了。 
服务器收到这个请求以后,返回的信息如下: 

206 
Content-Length=106786028 
Content-Range=bytes 2000070-106786027/106786028 
Date=Mon, 30 Apr 2001 12:55:20 GMT 
ETag=W/"02ca57e173c11:95b" 
Content-Type=application/octet-stream 
Server=Microsoft-IIS/5.0 
Last-Modified=Mon, 30 Apr 2001 12:55:20 GMT

和前面服务器返回的信息比较一下,就会发现增加了一行: 
Content-Range=bytes 2000070-106786027/106786028 
返回的代码也改为 206 了,而不再是 200 了。

知道了以上原理,就可以进行断点续传的编程了。

2、Java 实现断点续传的关键几点

  1. (1) 用什么方法实现提交 RANGE: bytes=2000070-。 
    当然用最原始的 Socket 是肯定能完成的,不过那样太费事了,其实 Java 的 net 包中提供了这种功能。代码如下: 

    1. URL url = new URL("http://www.sjtu.edu.cn/down.zip");
    2. HttpURLConnection httpConnection = (HttpURLConnection)url.openConnection();
    3. // 设置 User-Agent
    4. httpConnection.setRequestProperty("User-Agent","NetFox");
    5. // 设置断点续传的开始位置
    6. httpConnection.setRequestProperty("RANGE","bytes=2000070");
    7. // 获得输入流
    8. InputStream input = httpConnection.getInputStream();

    从输入流中取出的字节流就是 down.zip 文件从 2000070 开始的字节流。 大家看,其实断点续传用 Java 实现起来还是很简单的吧。 接下来要做的事就是怎么保存获得的流到文件中去了。

  2. 保存文件采用的方法。 
    我采用的是 IO 包中的 RandAccessFile 类。 
    操作相当简单,假设从 2000070 处开始保存文件,代码如下: 
    1. RandomAccess oSavedFile = new RandomAccessFile("down.zip","rw");
    2. long nPos = 2000070;
    3. // 定位文件指针到 nPos 位置
    4. oSavedFile.seek(nPos);
    5. byte[] b = new byte[1024];
    6. int nRead;
    7. // 从输入流中读入字节流,然后写到文件中
    8. while((nRead=input.read(b,0,1024)) > 0)
    9. {
    10. oSavedFile.write(b,0,nRead);
    11. }

 接下来要做的就是整合成一个完整的程序了。包括一系列的线程控制等等。

3、断点续传内核的实现

主要用了 6 个类,包括一个测试类:
SiteFileFetch.java         负责整个文件的抓取,控制内部线程 (FileSplitterFetch 类 )。 
FileSplitterFetch.java    负责部分文件的抓取。 
FileAccess.java            负责文件的存储。 
SiteInfoBean.java         要抓取的文件的信息,如文件保存的目录,名字,抓取文件的 URL 等。 
Utility.java                    工具类,放一些简单的方法。 
TestMethod.java          测试类。

我这里做了一下整理:

SiteFileFetch.java 

  1. package com.boonya.http.file;
  2. import java.io.DataInputStream;
  3. import java.io.DataOutputStream;
  4. import java.io.File;
  5. import java.io.FileInputStream;
  6. import java.io.FileOutputStream;
  7. import java.io.IOException;
  8. import java.net.HttpURLConnection;
  9. import java.net.URL;
  10. /**
  11. * <li>文件名称: SiteFileFetch</li>
  12. * <li>文件描述: $负责整个文件的抓取,控制内部线程(FileSplitterFetch类)</li>
  13. * <li>内容摘要: 包括模块、函数及其功能的说明</li>
  14. * <li>完成日期:2013-12-17</li>
  15. * <li>所属作者:boonyachengdu@gmail.com</li>
  16. * <li>修改记录1:下午10:31:16,修改内容描述</li>
  17. *
  18. */
  19. public class SiteFileFetch extends Thread
  20. {
  21. // 文件信息Bean
  22. SiteInfoBean siteInfoBean = null;
  23. // 开始位置
  24. long[] nStartPos;
  25. // 结束位置
  26. long[] nEndPos;
  27. // 子线程对象
  28. FileSplitterFetch[] fileSplitterFetch;
  29. // 文件长度
  30. long nFileLength;
  31. // 是否第一次取文件
  32. boolean bFirst = true;
  33. // 停止标志
  34. boolean bStop = false;
  35. // 文件下载的临时信息
  36. File tmpFile;
  37. // 输出到文件的输出流
  38. DataOutputStream output;
  39. public SiteFileFetch(SiteInfoBean bean) throws IOException
  40. {
  41. siteInfoBean = bean;
  42. // tmpFile = File.createTempFile ("zhong","1111",new
  43. // File(bean.getSFilePath()));
  44. tmpFile = new File(bean.getSFilePath() + File.separator + bean.getSFileName() + ".info");
  45. if (tmpFile.exists())
  46. {
  47. bFirst = false;
  48. read_nPos();
  49. } else
  50. {
  51. nStartPos = new long[bean.getNSplitter()];
  52. nEndPos = new long[bean.getNSplitter()];
  53. }
  54. }
  55. public void run()
  56. {
  57. // 获得文件长度
  58. // 分割文件
  59. // 实例FileSplitterFetch
  60. // 启动FileSplitterFetch线程
  61. // 等待子线程返回
  62. try
  63. {
  64. if (bFirst)
  65. {
  66. nFileLength = getFileSize();
  67. if (nFileLength == -1)
  68. {
  69. System.err.println("File Length is not known!");
  70. } else if (nFileLength == -2)
  71. {
  72. System.err.println("File is not access!");
  73. } else
  74. {
  75. for (int i = 0; i < nStartPos.length; i++)
  76. {
  77. nStartPos[i] = (long) (i * (nFileLength / nStartPos.length));
  78. }
  79. for (int i = 0; i < nEndPos.length - 1; i++)
  80. {
  81. nEndPos[i] = nStartPos[i + 1];
  82. }
  83. nEndPos[nEndPos.length - 1] = nFileLength;
  84. }
  85. }
  86. // 启动子线程
  87. fileSplitterFetch = new FileSplitterFetch[nStartPos.length];
  88. for (int i = 0; i < nStartPos.length; i++)
  89. {
  90. fileSplitterFetch[i] = new FileSplitterFetch(siteInfoBean.getSSiteURL(), siteInfoBean.getSFilePath() + File.separator + siteInfoBean.getSFileName(), nStartPos[i], nEndPos[i], i);
  91. Utility.log("Thread " + i + " , nStartPos = " + nStartPos[i] + ", nEndPos = " + nEndPos[i]);
  92. fileSplitterFetch[i].start();
  93. }
  94. // fileSplitterFetch[nPos.length-1] = new
  95. // FileSplitterFetch(siteInfoBean.getSSiteURL(),
  96. // siteInfoBean.getSFilePath() + File.separator +
  97. // siteInfoBean.getSFileName(),nPos[nPos.length-1],nFileLength,nPos.length-1);
  98. // Utility.log("Thread " + (nPos.length-1) + " , nStartPos = " +
  99. // nPos[nPos.length-1] + ", nEndPos = " + nFileLength);
  100. // fileSplitterFetch[nPos.length-1].start();
  101. // 等待子线程结束
  102. // int count = 0;
  103. // 是否结束while循环
  104. boolean breakWhile = false;
  105. while (!bStop)
  106. {
  107. write_nPos();
  108. Utility.sleep(500);
  109. breakWhile = true;
  110. for (int i = 0; i < nStartPos.length; i++)
  111. {
  112. if (!fileSplitterFetch[i].bDownOver)
  113. {
  114. breakWhile = false;
  115. break;
  116. }
  117. }
  118. if (breakWhile)
  119. break;
  120. // count++;
  121. // if(count>4)
  122. // siteStop();
  123. }
  124. System.err.println("文件下载结束!");
  125. } catch (Exception e)
  126. {
  127. e.printStackTrace();
  128. }
  129. } // 获得文件长度
  130. public long getFileSize()
  131. {
  132. int nFileLength = -1;
  133. try
  134. {
  135. URL url = new URL(siteInfoBean.getSSiteURL());
  136. HttpURLConnection httpConnection = (HttpURLConnection) url.openConnection();
  137. httpConnection.setRequestProperty("User-Agent", "NetFox");
  138. int responseCode = httpConnection.getResponseCode();
  139. if (responseCode >= 400)
  140. {
  141. processErrorCode(responseCode);
  142. return -2; // -2 represent access is error
  143. }
  144. String sHeader;
  145. for (int i = 1;; i++)
  146. {
  147. // DataInputStream in = new
  148. // DataInputStream(httpConnection.getInputStream ());
  149. // Utility.log(in.readLine());
  150. sHeader = httpConnection.getHeaderFieldKey(i);
  151. if (sHeader != null)
  152. {
  153. if (sHeader.equals("Content-Length"))
  154. {
  155. nFileLength = Integer.parseInt(httpConnection.getHeaderField(sHeader));
  156. break;
  157. }
  158. } else
  159. break;
  160. }
  161. } catch (IOException e)
  162. {
  163. e.printStackTrace();
  164. } catch (Exception e)
  165. {
  166. e.printStackTrace();
  167. }
  168. Utility.log(nFileLength);
  169. return nFileLength;
  170. }
  171. // 保存下载信息(文件指针位置)
  172. private void write_nPos()
  173. {
  174. try
  175. {
  176. output = new DataOutputStream(new FileOutputStream(tmpFile));
  177. output.writeInt(nStartPos.length);
  178. for (int i = 0; i < nStartPos.length; i++)
  179. {
  180. // output.writeLong(nPos[i]);
  181. output.writeLong(fileSplitterFetch[i].nStartPos);
  182. output.writeLong(fileSplitterFetch[i].nEndPos);
  183. }
  184. output.close();
  185. } catch (IOException e)
  186. {
  187. e.printStackTrace();
  188. } catch (Exception e)
  189. {
  190. e.printStackTrace();
  191. }
  192. }
  193. // 读取保存的下载信息(文件指针位置)
  194. private void read_nPos()
  195. {
  196. try
  197. {
  198. DataInputStream input = new DataInputStream(new FileInputStream(tmpFile));
  199. int nCount = input.readInt();
  200. nStartPos = new long[nCount];
  201. nEndPos = new long[nCount];
  202. for (int i = 0; i < nStartPos.length; i++)
  203. {
  204. nStartPos[i] = input.readLong();
  205. nEndPos[i] = input.readLong();
  206. }
  207. input.close();
  208. } catch (IOException e)
  209. {
  210. e.printStackTrace();
  211. } catch (Exception e)
  212. {
  213. e.printStackTrace();
  214. }
  215. }
  216. private void processErrorCode(int nErrorCode)
  217. {
  218. System.err.println("Error Code : " + nErrorCode);
  219. }
  220. // 停止文件下载
  221. public void siteStop()
  222. {
  223. bStop = true;
  224. for (int i = 0; i < nStartPos.length; i++)
  225. fileSplitterFetch[i].splitterStop();
  226. }
  227. }

FileSplitterFetch.java

  1. package com.boonya.http.file;
  2. import java.io.IOException;
  3. import java.io.InputStream;
  4. import java.net.HttpURLConnection;
  5. import java.net.URL;
  6. /**
  7. * <li>文件名称: FileSplitterFetch</li>
  8. * <li>文件描述: $负责部分文件的抓取</li>
  9. * <li>内容摘要: 包括模块、函数及其功能的说明</li>
  10. * <li>完成日期:2013-12-17</li>
  11. * <li>所属作者:boonyachengdu@gmail.com</li>
  12. * <li>修改记录1:下午10:33:39,修改内容描述</li>
  13. *
  14. */
  15. public class FileSplitterFetch extends Thread
  16. {
  17. // File URL
  18. String sURL;
  19. // File Snippet Start Position
  20. long nStartPos;
  21. // File Snippet End Position
  22. long nEndPos;
  23. // Thread's ID
  24. int nThreadID;
  25. // Downing is over
  26. boolean bDownOver = false;
  27. // Stop identical
  28. boolean bStop = false;
  29. // File Access interface
  30. FileAccess fileAccessI = null;
  31. public FileSplitterFetch(String sURL, String sName, long nStart, long nEnd, int id) throws IOException
  32. {
  33. this.sURL = sURL;
  34. this.nStartPos = nStart;
  35. this.nEndPos = nEnd;
  36. nThreadID = id;
  37. fileAccessI = new FileAccess(sName, nStartPos);
  38. }
  39. public void run()
  40. {
  41. while (nStartPos < nEndPos && !bStop)
  42. {
  43. try
  44. {
  45. URL url = new URL(sURL);
  46. HttpURLConnection httpConnection = (HttpURLConnection) url.openConnection();
  47. httpConnection.setRequestProperty("User-Agent", "NetFox");
  48. String sProperty = "bytes=" + nStartPos + "-";
  49. httpConnection.setRequestProperty("RANGE", sProperty);
  50. Utility.log(sProperty);
  51. InputStream input = httpConnection.getInputStream();
  52. // logResponseHead(httpConnection);
  53. byte[] b = new byte[1024];
  54. int nRead;
  55. while ((nRead = input.read(b, 0, 1024)) > 0 && nStartPos < nEndPos && !bStop)
  56. {
  57. nStartPos += fileAccessI.write(b, 0, nRead);
  58. // if(nThreadID == 1)
  59. // Utility.log("nStartPos = " + nStartPos + ", nEndPos = " +
  60. // nEndPos);
  61. }
  62. Utility.log("Thread " + nThreadID + " is over!");
  63. bDownOver = true;
  64. // nPos = fileAccessI.write (b,0,nRead);
  65. } catch (Exception e)
  66. {
  67. e.printStackTrace();
  68. }
  69. }
  70. }
  71. // 打印回应的头信息
  72. public void logResponseHead(HttpURLConnection con)
  73. {
  74. for (int i = 1;; i++)
  75. {
  76. String header = con.getHeaderFieldKey(i);
  77. if (header != null)
  78. // responseHeaders.put(header,httpConnection.getHeaderField(header));
  79. Utility.log(header + " : " + con.getHeaderField(header));
  80. else
  81. break;
  82. }
  83. }
  84. public void splitterStop()
  85. {
  86. bStop = true;
  87. }
  88. }
FileAccess.java

  1. package com.boonya.http.file;
  2. import java.io.IOException;
  3. import java.io.RandomAccessFile;
  4. import java.io.Serializable;
  5. /**
  6. * <li>文件名称: FileAccess</li>
  7. * <li>文件描述: $负责文件的存储</li>
  8. * <li>内容摘要: 包括模块、函数及其功能的说明</li>
  9. * <li>完成日期:2013-12-17</li>
  10. * <li>所属作者:boonyachengdu@gmail.com</li>
  11. * <li>修改记录1:下午10:35:47,修改内容描述</li>
  12. *
  13. */
  14. public class FileAccess implements Serializable
  15. {
  16. private static final long serialVersionUID = -6335788938054788024L;
  17. RandomAccessFile oSavedFile;
  18. long nPos;
  19. public FileAccess() throws IOException
  20. {
  21. this("", 0);
  22. }
  23. public FileAccess(String sName, long nPos) throws IOException
  24. {
  25. oSavedFile = new RandomAccessFile(sName, "rw");
  26. this.nPos = nPos;
  27. oSavedFile.seek(nPos);
  28. }
  29. public synchronized int write(byte[] b, int nStart, int nLen)
  30. {
  31. int n = -1;
  32. try
  33. {
  34. oSavedFile.write(b, nStart, nLen);
  35. n = nLen;
  36. } catch (IOException e)
  37. {
  38. e.printStackTrace();
  39. }
  40. return n;
  41. }
  42. }
SiteInfoBean.java

  1. package com.boonya.http.file;
  2. /**
  3. * <li>文件名称: SiteInfoBean</li>
  4. * <li>文件描述: $要抓取的文件的信息,如文件保存的目录,名字,抓取文件的URL等</li>
  5. * <li>内容摘要: 包括模块、函数及其功能的说明</li>
  6. * <li>完成日期:2013-12-17</li>
  7. * <li>所属作者:boonyachengdu@gmail.com</li>
  8. * <li>修改记录1:下午10:36:20,修改内容描述</li>
  9. *
  10. */
  11. public class SiteInfoBean
  12. {
  13. // Site's URL
  14. private String sSiteURL;
  15. // Saved File's Path
  16. private String sFilePath;
  17. // Saved File's Name
  18. private String sFileName;
  19. // Count of Splited Downloading File
  20. private int nSplitter;
  21. public SiteInfoBean()
  22. {
  23. // default value of nSplitter is 5
  24. this("", "", "", 5);
  25. }
  26. public SiteInfoBean(String sURL, String sPath, String sName, int nSpiltter)
  27. {
  28. sSiteURL = sURL;
  29. sFilePath = sPath;
  30. sFileName = sName;
  31. this.nSplitter = nSpiltter;
  32. }
  33. public String getSSiteURL()
  34. {
  35. return sSiteURL;
  36. }
  37. public void setSSiteURL(String value)
  38. {
  39. sSiteURL = value;
  40. }
  41. public String getSFilePath()
  42. {
  43. return sFilePath;
  44. }
  45. public void setSFilePath(String value)
  46. {
  47. sFilePath = value;
  48. }
  49. public String getSFileName()
  50. {
  51. return sFileName;
  52. }
  53. public void setSFileName(String value)
  54. {
  55. sFileName = value;
  56. }
  57. public int getNSplitter()
  58. {
  59. return nSplitter;
  60. }
  61. public void setNSplitter(int nCount)
  62. {
  63. nSplitter = nCount;
  64. }
  65. }
Utility.java

  1. package com.boonya.http.file;
  2. /**
  3. * <li>文件名称: Utility</li>
  4. * <li>文件描述: $工具类,放一些简单的方法</li>
  5. * <li>内容摘要: 包括模块、函数及其功能的说明</li>
  6. * <li>完成日期:2013-12-17</li>
  7. * <li>所属作者:boonyachengdu@gmail.com</li>
  8. * <li>修改记录1:下午10:36:44,修改内容描述</li>
  9. *
  10. */
  11. public class Utility
  12. {
  13. public Utility()
  14. {
  15. }
  16. public static void sleep(int nSecond)
  17. {
  18. try
  19. {
  20. Thread.sleep(nSecond);
  21. } catch (Exception e)
  22. {
  23. e.printStackTrace();
  24. }
  25. }
  26. public static void log(String sMsg)
  27. {
  28. System.err.println(sMsg);
  29. }
  30. public static void log(int sMsg)
  31. {
  32. System.err.println(sMsg);
  33. }
  34. }
TestMethod.java

  1. package com.boonya.http.file;
  2. /**
  3. * <li>文件名称: TestMethod</li>
  4. * <li>文件描述: $测试类</li>
  5. * <li>内容摘要: 包括模块、函数及其功能的说明</li>
  6. * <li>完成日期:2013-12-17</li>
  7. * <li>所属作者:boonyachengdu@gmail.com</li>
  8. * <li>修改记录1:下午10:38:43,修改内容描述</li>
  9. *
  10. */
  11. public class TestMethod
  12. {
  13. public TestMethod()
  14. {
  15. // /xx/weblogic60b2_win.exe
  16. try
  17. {
  18. SiteInfoBean bean = new SiteInfoBean("http://localhost/xx/weblogic60b2_win.exe", "D:\\temp", "weblogic60b2_win.exe", 5);
  19. SiteFileFetch fileFetch = new SiteFileFetch(bean);
  20. fileFetch.start();
  21. } catch (Exception e)
  22. {
  23. e.printStackTrace();
  24. }
  25. }
  26. public static void main(String[] args)
  27. {
  28. new TestMethod();
  29. }
  30. }
这个例子很好理解,断点续传就行了,确实帮了大忙了,感谢仁兄!

相关技术文章

点击QQ咨询
开通会员
返回顶部
×
微信扫码支付
微信扫码支付
确定支付下载
请使用微信描二维码支付
×

提示信息

×

选择支付方式

  • 微信支付
  • 支付宝付款
确定支付下载