zoukankan      html  css  js  c++  java
  • 根据地址下载文件

        
      public static final String HTTp_URL="http:下载链接";
                public static void main(String[] args) {
                        Dol();
                }
                    public static void Dol(){
                        BufferedInputStream bis=null;
                        BufferedOutputStream bos=null;
                try {
                    URL url = new URL(HTTp_URL);
                    HttpURLConnection connection =  (HttpURLConnection) url.openConnection();
                    connection.setRequestMethod("GET");
                    connection.connect();
                    InputStream is = connection.getInputStream();
                    
                    bis = new BufferedInputStream(is);
                    
                    File file = new File("D:/test/"+HTTp_URL.substring((HTTp_URL.lastIndexOf("/"))));//名字截取 可以省略
                    FileOutputStream fos = new FileOutputStream(file);
                    bos = new BufferedOutputStream(fos);
                    int b = 0;
                    byte[] byArr = new byte[1024*4];
                    while((b=bis.read(byArr))!=-1){
                        bos.write(byArr, 0, b);
                    }
                } catch (Exception e) {
                    e.printStackTrace();
                }finally{
                    try {
                        if(bis!=null){
                            bis.close();
                        }
                        if(bos!=null){
                            bos.close();
                        }
                    } catch (IOException e) {
                        e.printStackTrace();
                    }
                }
            }
        }
    

      

  • 相关阅读:
    字典常用操作复习
    列表常用方法复习
    爬虫流程复习
    协程解决素数
    yield 复习
    多线程复习2
    多线程复习1
    异常 巩固3
    logging日志基础示例
    2019最新百度网盘不限速下载教程
  • 原文地址:https://www.cnblogs.com/baizhanshi/p/8985430.html
Copyright © 2011-2022 走看看