1

我正在尝试使用以下代码从 Web 服务下载一个大型 (11MB) JSON 文件:

public static void downloadBigFile(final String serverUrl,
        final String fileName) throws MalformedURLException, IOException {
    System.out.println("Downloading " + serverUrl + " (" + fileName + ")");

    URL url = new URL(serverUrl);
    URLConnection con = url.openConnection();
    con.setConnectTimeout(10000);
    con.setReadTimeout(2 * 60 * 1000);

    int totalFileSize = con.getContentLength();
    System.out.println("Total file size: " + totalFileSize);

    InputStream inputStream = con.getInputStream();
    FileOutputStream outputStream = new FileOutputStream(fileName);

    // Used only for knowing the amount of bytes downloaded.
    int downloaded = 0;

    final byte[] buffer = new byte[1024 * 8];
    int bytesRead;

    bytesRead = inputStream.read(buffer);

    while (bytesRead != -1) {
        downloaded += bytesRead;
        outputStream.write(buffer, 0, bytesRead);
        bytesRead = inputStream.read(buffer);

        System.out.println(String.format("%d/%d (%.2f%%)", downloaded,
                totalFileSize,
                (downloaded * 1.0 / totalFileSize * 1.0) * 100));
    }

    System.out
            .println(fileName + " downloaded! (" + downloaded + " bytes)");

    inputStream.close();
    outputStream.close();
}

然而,调用con.getContentLength()阻塞线程几分钟,同时它下载了我认为的整个文件。

问题是我需要一种在下载开始之前快速发现文件大小的方法,以便我可以相应地通知用户。

注意:已经尝试调用con.connect()and con.getHeaderField("Content-Length")

4

1 回答 1

1

如果服务器没有指定Content-Length头部,那么获取内容长度的唯一方法就是下载整个文件,看看它有多大。

于 2013-09-26T19:52:15.297 回答