Is this the best way to download a file in java?

后端 未结 4 1827
半阙折子戏
半阙折子戏 2021-01-07 07:20
public void download(String url, String destination) {
        BufferedOutputStream localBufferedOutputStream = null;
        URLConnection localURLConnection = null         


        
4条回答
  •  礼貌的吻别
    2021-01-07 07:48

    As an alternative and just for reference, you can investigate HTMLUnit. This framework will allow you to download files even on sites where there are browser redirects.

    http://htmlunit.sourceforge.net/

提交回复
热议问题