HTTP Async Downloader с автоматическим -возобновлением работы при ошибке

В моем приложении есть асинхронный загрузчик, но иногда соединение теряется, особенно когда я использую мобильное соединение и если файл большой (>10 МБ ). Есть ли способ поймать остановку загрузки, а затем принудительно возобновить ее в результате завершения загрузки?

Это асинхронная задачаdoInBackground:

protected String doInBackground(String... aurl) {
    int count;

    try {

        URL url = new URL(aurl[0]);
        URLConnection conexion = url.openConnection();
        // conexion.setRequestProperty("Range", "bytes=" + downloaded + "-");
        conexion.connect();

        int lenghtOfFile = conexion.getContentLength();
        pesoVideo = lenghtOfFile / 1048576;
        output = "/sdcard/" + folderString + "/" + nomeFile + ".mp3";
        InputStream input = new BufferedInputStream(url.openStream());
        OutputStream output = new FileOutputStream(
        VideoDownloaderBrowserActivity.this.output);

        byte data[] = new byte[1024];
        long total = 0;

        while ((count = input.read(data)) != -1) {
            total += count;
            publishProgress("" + (int) ((total * 100) / lenghtOfFile));
            output.write(data, 0, count);
        }

        output.flush();
        output.close();
        input.close();

    } catch (Exception e) {
    }

    return null;
}

ЭтоonProgressUpdate:

protected void onProgressUpdate(String... progress) {
    if (Integer.parseInt(progress[0]) > progresso) {
       ...
    }
}
7
задан Blizzer 4 March 2013 в 18:38
поделиться