我正在开发一个需要从服务器下载数据的应用程序。
我使用以下代码,除了它有时会在文件下载过程中卡住之外,它可以工作。
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 没有效果?