有一个非常简单的下载文件代码。
class Downloader {
private static Downloader Dinstance = null;
private boolean isAborted = false;
void setAborted(boolean isAborted) {
isAborted = true;
}
int getAborted() {
return isAborted;
}
static Downloader getInstance(@NonNull Context context) {
if (Dinstance == null)
Dinstance = new Downloaderr(context.getApplicationContext());
return Dinstance;
}
private Downloader() {
...
}
function download() {
...
try {
URL url = new URL(RequestedURL);
InputStream inputStream = url.openStream();
DataInputStream dataInputStream = new DataInputStream(inputStream);
FileOutputStream fileOutputStream = new FileOutputStream(FileName);
byte[] buffer = new byte[4096];
int bytesRead;
while ((bytesRead = dataInputStream.read(buffer)) > 0) {
fileOutputStream.write(buffer, 0, bytesRead);
if (getAborted()) {
Log.d(static_variables.TAG, "Aborting 1");
fileOutputStream.close();
Log.d(static_variables.TAG, "Aborting 2");
dataInputStream.close();
Log.d(static_variables.TAG, "Aborting 3");
inputStream.close();
Log.d(static_variables.TAG, "All closed");
file.delete();
downloadFinished = true;
Log.d(static_variables.TAG, "Returning");
return false;
}
fileOutputStream.close();
dataInputStream.close();
inputStream.close();
} catch (IOException e) {
downloadFinished = true;
return false;
}
...
}
}
在主活动中
第一个按钮监听器(开始下载(:
function onClick() {
new Thread(new Runnable() {
@Override
public void run() {
Downloader.getInstance().download(...);
}
}).start();
}
第二个按钮侦听器:
function onClick() {
Downloader.getInstance().setAborted(true);
}
下载进入线程。 在日志中,dataInputStream.close();
的时间最大。其他研究表明,在文件完全下载之前,流不会关闭。
如何终止正在进行的InputStream
?
在研究过程中,我发现了两件事。
-
使用这种方法下载会中止,但是有一个缓冲区,对于小文件(在我的情况下是歌曲(,它几乎无法跟踪。对于 500Mb 文件下载,当您在 15Mb 下载时按中止,然后在 16-17 之后它将停止。
-
如果你想(像我一样(更快地终止下载,那么你应该使用另一种方法。启动线程时,保存指针 int 变量。
Thread threadDownload = new Thread(...);
threadDownload.start();
然后使用
threadDownload.interrupt();
小心。您需要自己删除临时文件。您在OutputStream
中使用的文件。
您还将有一些缓冲区开销,但它不会是 1-2Mb,而是 200-300Kb。