0

InputStream in = c.getInputStream();我在专门从给定的 url 下载 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();
    }
}
4

1 回答 1

1

c.setDoInput(true);在该行之前添加c.connect();,告诉连接对象您想要接收服务器响应。

此外,您可能希望更改为c.setDoOutput(true);c.setDoOutput(false);因为您没有为您的请求设置正文(通常,get 请求不需要 setDoOutput)

于 2013-11-05T16:29:33.817 回答