Download the file according to the address

    
  public static final String HTTP_URL="http:download link";
            public static void main(String[] args) {
                    Down ();
            }
                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("/"))));//Name interception can be omitted
                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 ();
                }
            }
        }
    }

  

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=325212300&siteId=291194637