A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始


  1. package day04_tomcat;

  2. import java.io.IOException;
  3. import java.io.InputStream;
  4. import java.io.RandomAccessFile;
  5. import java.net.URL;
  6. import java.net.URLConnection;

  7. public class Test {

  8.         public static void main(String[] args) throws IOException {
  9.                 URL url=new URL("http://127.0.0.1:8080/day05_header/xiao.jpg");
  10.                 speedThreadDownload(url, 3,"F:/3.jpg");
  11.                 //download(url);
  12.         }
  13.        
  14.         /**
  15.          *
  16.      * @param url 被请求下载的URL
  17.          * @param threadNum 用于下载的线程数
  18.          * @param path 文件保存位置
  19.          * @throws IOException
  20.          */
  21.         private static void speedThreadDownload(URL url,int threadNum,final String path) throws IOException
  22.                          {
  23.                 int length=url.openConnection().getContentLength();
  24.                 System.out.println("文件总字节数:"+length);
  25.                
  26.                 final int baseNum=length/threadNum;
  27.                 for(int i=1;i<=threadNum;i++){
  28.                         final URLConnection con=url.openConnection();
  29.                         String by="bytes="+baseNum*(i-1)+"-"+(i==threadNum?length:(baseNum*i-1));
  30.                         //System.out.println(by);
  31.                         con.setRequestProperty("range", by);
  32.                         final int index=baseNum*(i-1);
  33.                         new Thread(new Runnable() {
  34.                                 @Override
  35.                                 public void run() {
  36.                                         int len=0;
  37.                                         byte[] bytes=new byte[1024];
  38.                                         try (RandomAccessFile daf
  39.                                                         = new RandomAccessFile(path, "rw");
  40.                                                 InputStream in=con.getInputStream();){
  41.                                                 daf.seek(index);
  42.                                                 while((len=in.read(bytes))>0)
  43.                                                         daf.write(bytes,0,len);
  44.                                                
  45.                                         } catch (IOException e) {
  46.                                                
  47.                                                 e.printStackTrace();
  48.                                         }
  49.                                 }
  50.                         }).start();
  51.                 }
  52.         }
  53.        
  54. }


复制代码

1 个回复

倒序浏览
就这么一点代码我写了一上午,,改了无数遍,,实际写的东西是它的十倍以上
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马