我正在使用 Asynctask 在我的 Android 应用程序中下载文件。由于文件大小通常很大,我在后台启动文件下载。没有进度条或任何显示,以便用户可以在下载过程中访问应用程序的其他部分。
文件下载完成后,我想通知用户他的文件已成功下载。
使用 onPostexecute() 方法会产生问题,因为下载过程开始时用户不再处于同一活动中。结果,我无法使用 onPostExecute() 中的警报对话框和通知,因为上下文存在问题。
我已将 Asynctask 的代码粘贴在下面。所以,请给我一个解决这个问题的方法。
class DownloadProcess extends AsyncTask<Void,Void,Void>{
Context cxt;
public DownloadProcess(Context context) {
cxt=context;
}
@Override
protected Void doInBackground(Void... arg0) {
try {
String fileurl="http://www.bigfiles/" + filenm;
URL url = new URL(fileurl);
HttpURLConnection c = (HttpURLConnection) url.openConnection();
c.setRequestMethod("GET");
c.setDoOutput(true);
c.connect();
Path = Environment.getExternalStorageDirectory() + "/download/";
File pth=new File(Path);
File file = new File(pth,filenm);
FileOutputStream fos = new FileOutputStream(file);
InputStream is = c.getInputStream();
byte[] buffer = new byte[1024];
int len1 = 0;
while ((len1 = is.read(buffer)) != -1) {
fos.write(buffer, 0, len1);
}
fos.close();
is.close();
} catch (IOException e) {
Log.d("amit", "Error: " + e);
}
return null;
}
@Override
protected void onPostExecute(Void result) {
super.onPostExecute(result);
if (((Activity) AppDet.this).isFinishing() == false) {
AlertDialog.Builder builder = new AlertDialog.Builder(AppDet.this);
builder.setMessage("The app download is complete. Please check " +Path+ " on your device and open the " + filenm+ " file downloaded");
builder.setCancelable(true);
builder.setPositiveButton("Ok", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
dialog.cancel();
}
});
AlertDialog alert = builder.create();
alert.show();
MediaPlayer md=MediaPlayer.create(AppDet.this, R.raw.ding);
md.start();
}
else {
//Not sure what to do here
}
}