通过http-auth下载文件

Download a file through http-auth

我无法使用基本的 http-auth 下载文件。我有用于授权的 auth 字符串,但出现异常:FileNotFound。 代码:

URL url = new URL(params[0]);
                URLConnection  conection =  url.openConnection();

                conection.setRequestProperty("Authorization", authString);
                conection.setRequestMethod("GET");
                conection.setAllowUserInteraction(false);
                conection.setDoInput(true);
                conection.setDoOutput(true);
                conection.connect();



                int lenghtOfFile = conection.getContentLength();


                // Exception on line below
                BufferedInputStream  input = new BufferedInputStream(conection.getInputStream()); 

                // Output stream
                OutputStream output = new FileOutputStream(filePath);

                byte data[] = new byte[1024];
...

lenghtOfFile 不是 0。此外,我尝试使用 HtppClient 完成此任务,但也出现异常。

正如我所说,您应该删除 setDoOutput(true) 行,因为这是 GET 请求。