快速业务通道

用Java实现HTTP文件队列下载 - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-23
  String filename = null;    //按列表顺序保存资源    for (int i = 0; i < vDownLoad.size(); i++) {     url = (String) vDownLoad.get(i);     filename = (String) vFileList.get(i);     try {      saveToFile(url, filename);     }     catch (IOException err) {      if (DEBUG) {       System.out.println("资源[" + url + "]下载失败!!!");      }     }    }    if (DEBUG) {     System.out.println("下载完成!!!");    }   }   /**   * 将HTTP资源另存为文件   *   * @param destUrl String   * @param fileName String   * @throws Exception   */   public void saveToFile(String destUrl, String fileName) throws IOException {    FileOutputStream fos = null;    BufferedInputStream bis = null;    HttpURLConnection httpUrl = null;    URL url = null;    byte[] buf = new byte[BUFFER_SIZE];    int size = 0;    //建立链接    url = new URL(destUrl);    httpUrl = (HttpURLConnection) url.openConnection();    //连接指定的资源    httpUrl.connect();    //获取网络输入流    bis = new BufferedInputStream(httpUrl.getInputStream());    //建立文件    fos = new FileOutputStream(fileName);    if (this.DEBUG) System.out.println("正在获取链接[" + destUrl + "]的内容...\n将其保存为文件[" + fileName + "]");    //保存文件---www.bianceng.cn    while ( (size = bis.read(buf)) != -1)     fos.write(buf, 0, size);    fos.close();    bis.close();    httpUrl.disconnect();   }   /**   * 设置代理服务器   *   * @param proxy String   * @param proxyPort String   */   public void setProxyServer(String proxy, String proxyPort) {    //设置代理服务器    System.getProperties().put("proxySet", "true");    System.getProperties().put("proxyHost", proxy);    System.getProperties().put("proxyPort", proxyPort);   }   /**   * 设置认证用户名与密码   *   * @param uid String   * @param pwd String   */   public void setAuthenticator(String uid, String pwd) {    Authenticator.setDefault(new MyAuthenticator(uid, pwd));   }   /**   * 主方法(用于测试)   *   * @param argv String[]   */   public static void main(String argv[]) {    HttpGet oInstance = new HttpGet(); try { //增加下载列表(此处用户可以写入自己代码来增加下载列表) oInstance.addItem("http://www.ebook.com/java/网络编程001.zip","./网络编程1.zip"); oInstance.addItem("http://www.ebook.com/java/网络编程002.zip","./网络编程2.zip"); oInstance.addItem("http://www.ebook.com/java/网络编程003.zip","./网络编程3.zip"); oInstance.addItem("http://www.ebook.com/java/网络编程004.zip","./网络编程4.zip"); oInstance.addItem("http://www.ebook.com/java/网络编程005.zip","./网络编程5.zip"); oInstance.addItem("http://www.ebook.com/java/网络编程006.zip","./网络编程6.zip"); oInstance.addItem("http://www.ebook.com/java/网络编程007.zip"

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号