0

このトピックを読みました

進行状況ダイアログが進行状況をアップロードしないか、ダウンロード後に1回だけアップロードして突然100%を表示するため、大きなファイルのダウンロードに問題があります。しかし、小さなファイルをダウンロードしているときは、すべてが完全に機能します。

ここに問題があると思います:

publishProgress((int)(total*100/fileLength));

私のコード:

private class DownloadFile extends AsyncTask<String, Integer, String> {

    @Override

    protected String doInBackground(String... sUrl) {

        try {

            URL url = new URL(sUrl[0]);

            URLConnection connection = url.openConnection();

            connection.connect();

            // this will be useful so that you can show a typical 0-100% progress bar

            int fileLength = connection.getContentLength();

            // download the file
            InputStream input = new BufferedInputStream(url.openStream());

            String sdpath = Environment.getExternalStorageDirectory().getAbsolutePat();

            File dir = new File(sdpath + "/Myfolder");

            dir.mkdir();

            OutputStream output = new FileOutputStream(dir.toString() + "/" + "myfilename");

            byte data[] = new byte[1024];

            long total = 0;

            int count;

            while ((count = input.read(data)) != -1) {

                total += count;

                // publishing the progress....

               publishProgress((int)(total/fileLength)*100);

               output.write(data, 0, count);

            }
            output.flush();
            output.close();
            input.close();
            } 
          catch (Exception e) {

        }

        return null;

    }

    @Override

    protected void onPreExecute() {

        super.onPreExecute();

        mProgressDialog.show();

    }

      @Override

       protected void onProgressUpdate(Integer... progress) {

        super.onProgressUpdate(progress);

        mProgressDialog.setProgress(progress[0]);

    }

}

私のファイルは約80MBです。

4

1 に答える 1

0

最初に分割してみてください:

publishProgress((int)(total/fileLength)*100);

範囲外の分割を取得できるためです。

于 2012-12-15T11:40:40.677 に答える