Проблема Android Inputstream.read на Gingerbread (при загрузке)

1

Я не нашел здесь такого вопроса.

Вчера я наконец получил Gingerbread 2.3.4 на своем Nexus One. Когда я открыл приложение (в основном загружает XML-канал в ListView), он застревает во время загрузки.

Кажется, что поток InputStream; → stream.read(buffer); больше не возвращает -1, когда он закончен.

Кодекс IST почти то же самое здесь Скачать Прогресс

Вот мой код:

public InputStream getInputStreamFromURL(String urlString, DownloadProgressCallback callback) 
    throws IOException, IllegalArgumentException
    {
        InputStream in = null;

        conn = (HttpURLConnection) new URL(urlString).openConnection();
        fileSize = conn.getContentLength();
        out = new ByteArrayOutputStream((int) fileSize);
        conn.connect();

        stream = conn.getInputStream();
        // loop with step 1kb
        while (status == DOWNLOADING) {
            byte buffer[];

            if (fileSize - downloaded > MAX_BUFFER_SIZE) {
                buffer = new byte[MAX_BUFFER_SIZE];
            } else {
                buffer = new byte[(int) (fileSize - downloaded)];
            }
            int read = stream.read(buffer);

            if (read == -1) {
                break;
            }
            // writing to buffer
            out.write(buffer, 0, read);
            downloaded += read;
            // update progress bar
            callback.progressUpdate((int) ((downloaded / fileSize) * 100));
        }// end of while

        if (status == DOWNLOADING) {
            status = COMPLETE;
        }
        in= (InputStream) new ByteArrayInputStream(out.toByteArray());
        // end of class DownloadImageTask()
        return in;     
    }

Проблема в основном заключается в том, что при завершении загрузки stream.read(buffer) возвращает 0 вместо -1. Когда я меняю

if (read == -1) {
            break;
        }

до 0 или

if (fileSize == downloaded) {
            break;
        }

Я получаю ParseExceptions (ExpatParser) в моей MainActivity. На 2.2 он работает действительно отлично.

Я очистил кэш приложений и попробовал еще несколько вещей, но сейчас я действительно застрял.

Я надеюсь, что кто-то может мне помочь. :)

ОБНОВИТЬ:

Это потрясающе, ты мужчина, Гийом. :) Большое спасибо, что спасли мой вечер! :)

Ваш код для моих нужд здесь:

public InputStream getStreamFromURL(String urlString, DownloadProgressCallback callback){
    // initialize some timeouts
    HttpParams httpParameters = new BasicHttpParams();
    HttpConnectionParams.setConnectionTimeout(httpParameters,3000);

    // create the connection
    URL url;
    try {
        url = new URL(urlString);
        URLConnection connection = url.openConnection();
        HttpURLConnection httpConnection = (HttpURLConnection) connection;
     // connection accepted
        if(httpConnection.getResponseCode() == HttpURLConnection.HTTP_OK) {
            int size = connection.getContentLength();

            int index = 0;
            int current = 0;



                InputStream input = connection.getInputStream();
                BufferedInputStream buffer = new BufferedInputStream(input);
                byte[] bBuffer = new byte[1024];
                out = new ByteArrayOutputStream((int) size);

                while((current = buffer.read(bBuffer)) != -1) {

                    out.write(bBuffer, 0, current);
                    index += current;
                    callback.progressUpdate((index/size)*100);
                }
                out.close();

        }
    } catch (MalformedURLException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    } catch (IOException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
    return (InputStream) new ByteArrayInputStream(out.toByteArray());

}
Теги:
inputstream
download

1 ответ

2
Лучший ответ

Этот код работает на моем 2.3.4 Nexus One:

try {
    // initialize some timeouts
    HttpParams httpParameters = new BasicHttpParams();
    HttpConnectionParams.setConnectionTimeout(httpParameters, 3000);

    // create the connection
    URL url = new URL(toDownload);
    URLConnection connection = url.openConnection();
    HttpURLConnection httpConnection = (HttpURLConnection) connection;

    // connection accepted
    if (httpConnection.getResponseCode() == HttpURLConnection.HTTP_OK) {
        try {
            file = new File(destination);
            // delete the file if exists
            file.delete();
        } catch (Exception e) {
            // nothing
        }

        int size = connection.getContentLength();

        int index = 0;
        int current = 0;

        try {
            file = new File(destination);
            file.delete();
            FileOutputStream output = new FileOutputStream(file);
            InputStream input = connection.getInputStream();
            BufferedInputStream buffer = new BufferedInputStream(input);
            byte[] bBuffer = new byte[10240];

            while ((current = buffer.read(bBuffer)) != -1) {
                if (isCancelled()) {
                    file.delete();
                    break;
                }

                try {
                    output.write(bBuffer, 0, current);
                } catch (IOException e) {
                    e.printStackTrace();
                }
                index += current;
                publishProgress(index / (size / 100));
            }
            output.close();
        } catch (SecurityException se) {
            se.printStackTrace();
            return 1;
        } catch (FileNotFoundException e) {
            e.printStackTrace();
            return 1;
        } catch (Exception e) {
            e.printStackTrace();
            return 2;
        }

        return 0;
    }

    // connection refused
    return 2;
} catch (IOException e) {
    return 2;
}

Ещё вопросы

Сообщество Overcoder
Наверх
Меню