Ho cercato di scaricare video da un URL, ho implementato il mio metodo di download nel doInBackground() di asynctask, ma il metodo doInBackground richiede molto tempo per viene chiamato (5-10 minuti), sto usando un altro asyntask per scaricare l'immagine nell'attività da cui sono diretto per scaricare l'attività video e il suo funzionamento. Il mio metodo onPreExecute viene richiamato in tempo, ma in seguito doInBackground impiega circa 5-7 minuti per iniziare. Sarò davvero grato per qualsiasi aiuto fornito. Ecco mycodeAndroid: il metodo doInBackground di Asynctask viene chiamato dopo un lungo ritardo
btnDownloadLQ.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View arg0)
{
try
{
new DownloadVideoTask().execute(videoURL);
}
catch(Exception e)
{
Log.e("Vidit_TAG","I got an error",e);
}
}
});
private class DownloadVideoTask extends AsyncTask<String, String, String>
{
@SuppressWarnings("deprecation")
@Override
protected void onPreExecute() {
super.onPreExecute();
showDialog(DIALOG_DOWNLOAD_PROGRESS);
}
protected String doInBackground(String... urls)
{
int i=0;
try
{
URL url = new URL (urls[0]);
InputStream input = url.openStream();
try {
//The sdcard directory e.g. '/sdcard' can be used directly, or
//more safely abstracted with getExternalStorageDirectory()
String root = Environment.getExternalStorageDirectory().toString();
File storagePath = new File(root + "/vidit");
storagePath.mkdirs();
OutputStream output = new FileOutputStream (new File(storagePath,title+".mp4"));
try
{
byte[] buffer = new byte[1024];
int bytesRead = 0;
while ((bytesRead = input.read(buffer, 0, buffer.length)) >= 0)
{
output.write(buffer, 0, bytesRead);
}
}
catch(Exception e)
{
Log.e("Vidit_TAG","I got an error",e);
}
finally
{
output.close();
}
}
catch(Exception e)
{
Log.e("Vidit_TAG","I got an error",e);
}
finally
{
input.close();
//tvTitle.setText("Completed");
}
}
catch(Exception e)
{
Log.e("Vidit_TAG","I got an error",e);
}
return null;
}
@SuppressWarnings("deprecation")
@Override
protected void onPostExecute(String unused)
{
dismissDialog(DIALOG_DOWNLOAD_PROGRESS);
alertbox(title);
}
}
Potrebbe pubblicare il tuo codice? doInBackground viene chiamato non appena onPreExecute è terminato (ed esiste), quindi deve esserci qualcosa di sbagliato nel modo in cui lo chiami o nel tuo onPreExecute. –
probabilmente sta usando post delayed, la sua esecuzione impossibile dopo 10 minuti – deadfish
@ D_Steve595 Il mio metodo onPreExecute viene chiamato in tempo, che ho scoperto durante il debug, ma dopo che doInBackground richiede quasi 5-7 minuti per iniziare. –