Estoy creando una aplicación de Android y necesito descargar un archivo de una url, que es de 33 MB de tamaño.Android: excepción de "fin inesperado de la secuencia" descarga de archivos de gran tamaño
Aquí la tarea de descarga:
try {
int MAX_BUFFER_SIZE = 4096;
URL mUrl = new URL(params[0]);
HttpURLConnection connection = (HttpURLConnection) mUrl.openConnection();
connection.setRequestMethod("GET");
long length = connection.getContentLength(), downloaded = 0;
int read;
byte [] buffer = new byte[(((int)length) > MAX_BUFFER_SIZE) ? MAX_BUFFER_SIZE : (int)length];
String filename = getFilename(mUrl);
File file = new File (SDCARD_ROOT);
if (!file.exists() || !file.isDirectory()){
file.mkdir();
}
this.filename = filename;
file = new File (SDCARD_ROOT + this.filename);
FileOutputStream fos = new FileOutputStream (file);
//Start downloading
InputStream stream = connection.getInputStream();
while ((read=stream.read(buffer)) > -1){
fos.write(buffer, 0, read);
downloaded += read;
publishProgress((int) ((float) downloaded/length * 100));
}
fos.close();
return 1;
} catch (Exception e){
Log.e("REV-PARTS", "Revolver parts error in DownloadTask: " + e.getMessage());
return 2;
}
Funciona bien con archivos pequeños (1-15 mb), pero devolverá un "inesperado final de la corriente" excepción con archivos de gran tamaño. Gracias de antemano.
¿Qué llamada arroja la excepción? 'stream.read()'? –
Sí, stream.read – Gnufabio
@Gnufabio ¿Pudo solucionar este problema? –