gpt4 book ai didi

android - 使用暂停和恢复按钮下载文件?

转载 作者:行者123 更新时间:2023-11-30 02:43:06 27 4
gpt4 key购买 nike

我在谷歌上搜索了很多,但没有找到关于两个暂停和恢复按钮的解决方案。
我使用来自 this code this .
但我不知道如何实现暂停和恢复功能以及如何设置我的暂停和恢复按钮 onclick 事件:

pausebtn.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
stopdownload(); AND resumedownload(); <------
}
});


提前致谢。

最佳答案

停止下载调用

downloadTask.cancel(false);

要支持恢复下载,您可以使用 Resume http file download in java 中的代码:

HttpURLConnection connection = (HttpURLConnection) url.openConnection();
if(ISSUE_DOWNLOAD_STATUS.intValue()==ECMConstant.ECM_DOWNLOADING){
File file=new File(DESTINATION_PATH);
if(file.exists()){
downloaded = (int) file.length();
connection.setRequestProperty("Range", "bytes="+(file.length())+"-");
}
}else{
connection.setRequestProperty("Range", "bytes=" + downloaded + "-");
}
connection.setDoInput(true);
connection.setDoOutput(true);
progressBar.setMax(connection.getContentLength());
in = new BufferedInputStream(connection.getInputStream());
fos=(downloaded==0)? new FileOutputStream(DESTINATION_PATH): new FileOutputStream(DESTINATION_PATH,true);
bout = new BufferedOutputStream(fos, 1024);
byte[] data = new byte[1024];
int x = 0;
while ((x = in.read(data, 0, 1024)) >= 0) {
bout.write(data, 0, x);
downloaded += x;
progressBar.setProgress(downloaded);
}

关于android - 使用暂停和恢复按钮下载文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25480725/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com