下载大文件时在进度条上设置百分比不在 0 到 100 之间

Posted

技术标签:

【中文标题】下载大文件时在进度条上设置百分比不在 0 到 100 之间【英文标题】:Set Percentage not between 0 and 100 at Progressbar while downloading large files 【发布时间】:2019-05-27 20:54:43 【问题描述】:

当我下载小 .png 文件时,我正在尝试从服务器下载文件,但在下载大文件时,我的应用程序因非法参数异常而崩溃,指出设置的百分比不在0 和 100。

这是我得到的错误日志:

java.lang.IllegalArgumentException: setPercentage not between 0 and 100
        at is.arontibo.library.ProgressDownloadView.setPercentage(ProgressDownloadView.java:253)
        at is.arontibo.library.ElasticDownloadView.setProgress(ElasticDownloadView.java:86)
        at com.kitelytech.pmsapp.adapter.Filelistadapter$DownloadFile.onProgressUpdate(Filelistadapter.java:244)
        at com.kitelytech.pmsapp.adapter.Filelistadapter$DownloadFile.onProgressUpdate(Filelistadapter.java:150)
        at android.os.AsyncTask$InternalHandler.handleMessage(AsyncTask.java:715)
        at android.os.Handler.dispatchMessage(Handler.java:106)
        at android.os.Looper.loop(Looper.java:171)
        at android.app.ActivityThread.main(ActivityThread.java:6651)
        at java.lang.reflect.Method.invoke(Native Method)
        at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:547)
        at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:824)

这是我的 java 类 注意:为了便于理解,我只给出必要的部分,因为这是一个适配器类,它有一个单独的下载文件类来支持文件下载。

public class DownloadFile extends AsyncTask<String, String, String> 
        ElasticDownloadView mElasticDownloadView;
        private String fileName;
        public Activity fContext;
        private String folder;
        private boolean isDownloaded;


        public DownloadFile(Activity activity) 
            this.fContext = activity;
        


        /**
         * Before starting background thread
         * Show Progress Bar Dialog
         */
        @Override
        protected void onPreExecute() 
            super.onPreExecute();
            mElasticDownloadView = fContext.findViewById(R.id.elastic_download_view);
            mElasticDownloadView.startIntro();
        

        /**
         * Downloading file in background thread
         */
        @Override
        protected String doInBackground(String... f_url) 
            int count;
            try 
                URL url = new URL(f_url[0]);
                URLConnection connection = url.openConnection();
                connection.connect();
                // getting file length
                int lengthOfFile = connection.getContentLength();


                // input stream to read file - with 8k buffer
                InputStream input = new BufferedInputStream(url.openStream(), 8192);

                String timestamp = new SimpleDateFormat("yyyy.MM.dd.HH.mm.ss").format(new Date());

                //Extract file name from URL
                fileName = f_url[0].substring(f_url[0].lastIndexOf('/') + 1, f_url[0].length());

                //Append timestamp to file name
                fileName = timestamp + "_" + fileName;

                //External directory path to save file
                folder = Environment.getExternalStorageDirectory() + File.separator + "pms/";
                //Create pms folder if it does not exist
                File directory = new File(folder);

                if (!directory.exists()) 
                    directory.mkdirs();
                

                // Output stream to write file
                OutputStream output = new FileOutputStream(folder + fileName);

                byte data[] = new byte[1024];

                long total = 0;

                while ((count = input.read(data)) != -1) 
                    total += count;
                    // publishing the progress....
                    // After this onProgressUpdate will be called
                    publishProgress("" + (int) ((total * 100) / lengthOfFile));


                    // writing data to file
                    output.write(data, 0, count);
                

                // flushing output
                output.flush();

                // closing streams
                output.close();
                input.close();
             catch (Exception e) 
                Log.e("Error: ", e.getMessage());
            
            return "Something went wrong";
        

        /**
         * Updating progress bar
         */
        protected void onProgressUpdate(String... progress) 
            // setting progress percentage
            mElasticDownloadView = fContext.findViewById(R.id.elastic_download_view);
            mElasticDownloadView.setProgress(Integer.parseInt(progress[0]));
        


        @Override
        protected void onPostExecute(String message) 
            // dismiss the dialog after the file was downloaded
            mElasticDownloadView = fContext.findViewById(R.id.elastic_download_view);
            this.mElasticDownloadView.success();

          //New Approach using fileprovider use if android version is nougat or higher
            File toInstall = new File(folder, fileName );
            if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) 
                Uri apkUri = FileProvider.getUriForFile(mContext, BuildConfig.APPLICATION_ID + ".provider", toInstall);
                Intent intent = new Intent(Intent.ACTION_VIEW);
                intent.setData(apkUri);
                intent.setFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
                mContext.startActivity(intent);
             else 
                Uri apkUri = Uri.fromFile(toInstall);
                Intent intent = new Intent(Intent.ACTION_VIEW);
                intent.setDataAndType(apkUri, "*/*");
                intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
                mContext.startActivity(intent);
            
        
    

【问题讨论】:

相关***.com/questions/15208544/… 【参考方案1】:

来自https://docs.oracle.com/javase/7/docs/api/java/net/URLConnection.html#getContentLength()

public int getContentLength() 返回的值 content-length 头域。 注意:getContentLengthLong() 应该 比这个方法更受欢迎,因为它返回一个 long 而不是 因此更便携。 返回: 的内容长度 此连接的 URL 引用的资源,如果内容为 -1 长度未知,或者内容长度大于 整数.MAX_VALUE。

如您所见,getContentLength() 对于大文件可能会返回 -1,这可能是您问题的根源。 也许你应该试试:getContentLengthLong() 但也有长度未知的情况。 在这种情况下,您无法显示该过程的确切进度,因此请使用无限进度条。

【讨论】:

不起作用将其更改为 getContentLengthLong() 但同样的问题仍然存在 检查getContentLengthLong()的值是否为-1。 当我下载小图像文件时,我没有遇到任何问题,但是当我下载像 5-7 mb 这样的文件时,应用程序崩溃了 对于 5-7mb getContentLength() 就可以了。 也将 100 更改为 100.0

以上是关于下载大文件时在进度条上设置百分比不在 0 到 100 之间的主要内容,如果未能解决你的问题,请参考以下文章

下载文件时进度条不显示剩余百分比?

如何在服务和活动之间快速发送数据

MFC进度条的美化

如何使动画在进度条上移动得更慢

如何使用请求测量下载速度和进度?

b站进度条上面的波浪怎么关