Fix download file

This commit is contained in:
Victor Shcherb 2015-11-07 13:06:58 +01:00
parent b816cb3199
commit b3686c8417

View file

@ -313,6 +313,7 @@ public class DownloadFileHelper {
throws IOException {
targetFile.getParentFile().mkdirs();
FileOutputStream out = new FileOutputStream(targetFile);
try {
int read;
byte[] buffer = new byte[BUFFER_SIZE];
int remaining = length;
@ -321,7 +322,9 @@ public class DownloadFileHelper {
remaining -= countIS.getAndClearReadCount();
progress.remaining(remaining / 1024);
}
} finally {
out.close();
}
targetFile.setLastModified(de.dateModified);
}