6

我想用java下载一个HTTP查询,但是我下载的文件在下载时长度不确定。

我认为这将是相当标准的,所以我搜索并找到了它的代码片段: http: //snipplr.com/view/33805/

但是 contentLength 变量有问题。由于长度未知,我得到-1。这会产生错误。当我省略对 contentLength 的整个检查时,这意味着我总是必须使用最大缓冲区。

但问题是文件还没有准备好。因此,flush 仅被部分填充,部分文件丢失。

如果您尝试下载类似http://overpass-api.de/api/interpreter?data=area%5Bname%3D%22Hoogstade%22%5D%3B%0A%28%0A++node%28area%29%的链接3B%0A++%3C%3B%0A%29+%3B%0Aout+meta+qt%3B使用该片段,您会注意到错误,并且当您总是下载最大缓冲区以忽略错误时,您最终会得到损坏的 XML 文件。

有没有办法只下载文件的就绪部分?我想这是否可以下载大文件(最多几 GB)。

4

1 回答 1

19

这应该可行,我对其进行了测试,并且对我有用:

void downloadFromUrl(URL url, String localFilename) throws IOException {
    InputStream is = null;
    FileOutputStream fos = null;

    try {
        URLConnection urlConn = url.openConnection();//connect

        is = urlConn.getInputStream();               //get connection inputstream
        fos = new FileOutputStream(localFilename);   //open outputstream to local file

        byte[] buffer = new byte[4096];              //declare 4KB buffer
        int len;

        //while we have availble data, continue downloading and storing to local file
        while ((len = is.read(buffer)) > 0) {  
            fos.write(buffer, 0, len);
        }
    } finally {
        try {
            if (is != null) {
                is.close();
            }
        } finally {
            if (fos != null) {
                fos.close();
            }
        }
    }
}

如果您希望它在后台运行,只需在线程中调用它:

Thread download = new Thread(){
    public void run(){
        URL url= new URL("http://overpass-api.de/api/interpreter?data=area%5Bname%3D%22Hoogstade%22%5D%3B%0A%28%0A++node%28area%29%3B%0A++%3C%3B%0A%29+%3B%0Aout+meta+qt%3B");
        String localFilename="mylocalfile"; //needs to be replaced with local file path
        downloadFromUrl(url, localFilename);
    }
};
download.start();//start the thread
于 2013-01-19T11:41:13.870 回答