3

我正在使用 asynctask 下载文件。它正常工作,直到我关闭我的android的wifi连接(没有其他互联网连接),下载对话框仍然没有变化。当我通过日志检查时,我发现输入流的函数 read() 是不间断的。那么如何检查这种情况呢?这是我的代码:

URL url = new URL(this.url);
        URLConnection connection = url.openConnection();
        connection.setReadTimeout(1000);
        connection.connect();
        // this will be useful so that you can show a typical 0-100% progress bar
        int fileLength = connection.getContentLength();
        fileName = "temp.zip";

        // download the file
        InputStream input = new BufferedInputStream(connection.getInputStream());
        OutputStream output = new FileOutputStream(path+fileName);

        byte buffer[] = new byte[1024000];
        long total = 0;
        int count;
        Log.v("test download:","download in background");
        while (((count = input.read(buffer)) != -1)) {
            Log.v("test download:","read:"+count);
            total += count;
            publishProgress((int) (total * 100 / fileLength - 1));
            output.write(buffer, 0, count);
        }
4

2 回答 2

8

由于您已经通过调用设置了超时setReadTimeout(),因此您应该SocketTimeoutException在连接断开后不久得到一个。

您的代码是否碰巧可能会静默捕获此异常?

于 2012-08-22T21:33:10.460 回答
0

你的文件下载缓冲区大小太大 byte buffer[] = new byte[1024];就够了

当我尝试使用 Android 下载文件并使用 asynctask 在 ProgressDialog(最佳答案)中显示进度时,工作正常,没有遇到这个问题

于 2012-08-23T07:15:38.703 回答