Java后台如何根据路径地址下载文件?

传入一个路径,直接浏览器下载该文件

不会写Java后台代码啊,网上搜了很多乱七八糟的,

阅读 12.4k
2 个回答

Java后台也还是Java啊,文件下载基本类是一样的,网络请求、IO操作,这些你应该会吧。

新手上路,请多包涵
    
  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();
                }
            }
        }
    }
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题