通过http-auth下载文件

时间:2015-08-27 10:13:26

标签: java android http download http-authentication

我无法使用基本的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执行此任务,但也获得了异常。

1 个答案:

答案 0 :(得分:1)

正如我所评论的那样,你应该删除行setDoOutput(true),因为这是GET请求。