`
liudongbin521
  • 浏览: 25911 次
  • 性别: Icon_minigender_1
  • 来自: 黑龙江
社区版块
存档分类
最新评论

文件下载

    博客分类:
  • JAVA
 
阅读更多

public static void down(File f, String imgUrl) {
  byte[] buffer = new byte[8 * 1024];
  URL u;
  URLConnection connection = null;
  try {
   u = new URL(imgUrl);
   connection = u.openConnection();
  } catch (Exception e) {
   System.out.println("ERR:" + imgUrl);
   return;
  }
  connection.setReadTimeout(100000);
  InputStream is = null;
  FileOutputStream fos = null;
  try {
   f.createNewFile();
   is = connection.getInputStream();
   fos = new FileOutputStream(f);
   
   //获取文件长度
   System.out.println("长度:"+is.available());
    
   //写文件
   int len = 0;
   while ((len = is.read(buffer)) != -1) {
    fos.write(buffer, 0, len);
   }
   
   
  } catch (Exception e) {
   f.delete();
  } finally {
   if (fos != null) {
    try {
     fos.close();
    } catch (IOException e) {

    }
   }
   if (is != null) {
    try {
     is.close();
    } catch (IOException e) {
    }
   }
  }
  buffer = null; // System.gc(); }
 }

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics