我正在开发一个需要从服务器下载数据的应用程序。
我使用以下代码,除了有时在文件下载过程中卡住之外,该代码有效。

try{
    URL url = new URL( dlUrl );

    con = (HttpURLConnection) url.openConnection();
    con.setConnectTimeout(1000); // timeout 1 sec
    con.setReadTimeout(1000); // timeout 1 sec

    // get file length
    int lenghtOfFile = con.getContentLength();

    is = url.openStream();
    String dir =  Environment.getExternalStorageDirectory() + "myvideos";

    File file = new File( dir );
    if( !file.exists() ){
        if( file.mkdir()){
            // directory succesfully created
        }
    }

    fos = new FileOutputStream(file + "/" +  "video.mp4");
    byte data[] = new byte[1024];

    long total = 0;
    while( (count = is.read(data)) != -1 ){
        total += count;
        publishProgress((int)((total*100)/lenghtOfFile));
        fos.write(data, 0, count);
    }
} catch (Exception e) {
    Log.e(TAG, "DOWNLOAD ERROR = " + e.toString() );
}
finally{
 // close streams
}

问题可能是我使用的 WIFI 连接不稳定,或者我的代码缺少某些东西。
现在我想在下载停止时添加一个解决方法,但不幸的是 setReadTimeout 似乎没有效果!
我尝试了 Stackoverflow 中建议的解决方案,但没有一个适合我。
我是否缺少某种设置?
任何想法为什么 setReadTimeout 没有效果?

最佳答案

这是对一年前的问题的新答案,但我的代码中有一个类似的问题,我已经能够解决。

这一行是问题:

is = url.openStream();

获取输入流的正确方法是简单地从连接对象而不是 url 对象获取输入流。
is = con.getInputStream();

前一种方法可能会打开另一个与通过调用 url.openConnection() 获得的连接对象分开的网络连接

我通过评估 this web blog page 弄清楚了这一切。

对于遇到类似问题的任何其他人,在调用连接对象上的 getInputStreamconnect 方法之前,尽早调用 setReadTimout 也非常重要。

关于android - HttpURLConnection setReadTimeout 不起作用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/18732823/

10-11 20:04