我收到InputStream in = c.getInputStream();
上的错误我特意从给定的网址下载pdf。我通过在浏览器中打开它来检查它是否存在。有没有找到文件的原因?
public class PdfDownloader {
public static void DownloadFile(String fileURL, File directory) {
try {
FileOutputStream f = new FileOutputStream(directory);
URL u = new URL(fileURL);
HttpURLConnection c = (HttpURLConnection) u.openConnection();
c.setRequestMethod("GET");
c.setDoOutput(true);
c.connect();
InputStream in = c.getInputStream();
byte[] buffer = new byte[1024];
int len1 = 0;
while ((len1 = in.read(buffer)) > 0) {
f.write(buffer, 0, len1);
}
f.close();
} catch (Exception e) {
e.printStackTrace();
}
}
答案 0 :(得分:1)
在c.setDoInput(true);
行之前添加c.connect();
,告诉连接对象您想要接收服务器响应。
此外,您可能希望将c.setDoOutput(true);
更改为c.setDoOutput(false);
,因为您没有为请求设置正文(通常,在获取请求时不需要setDoOutput)