Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8148769
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T14:42:40+00:00 2026-06-06T14:42:40+00:00

i have done a code that will download the file from internet. but the

  • 0

i have done a code that will download the file from internet. but the problem is my phone will freeze(no response) until the download is done. the phone im using is Xperia Arc S and Galaxy S2. anyway to solve this?

    @Override
    protected void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.staffchoices);       

        MyI = new Intent(getApplicationContext(), MaxAppsAct.class);
        MyPI = PendingIntent.getActivity(getApplicationContext(), 0, MyI, 0);
        MyNM = (NotificationManager)getSystemService(Context.NOTIFICATION_SERVICE);

        Intent intent = new Intent(getApplicationContext(), MaxAppsAct.class);
        final PendingIntent pendingIntent = PendingIntent.getActivity(getApplicationContext(), 0, intent, 0);

        notification = new Notification(R.drawable.logo, "Downloading...", System.currentTimeMillis());
        notification.flags = notification.flags | Notification.FLAG_ONGOING_EVENT;
        notification.contentView = new RemoteViews(getApplicationContext().getPackageName(), R.layout.staffchoices);
        notification.contentIntent = pendingIntent;
        notification.contentView.setImageViewResource(R.id.imgIcon, R.drawable.save);
        notification.contentView.setTextViewText(R.id.tvText, "Downloading...");
        notification.contentView.setProgressBar(R.id.pbStatus, 100, progress, false);
        notificationManager = (NotificationManager) getApplicationContext().getSystemService(getApplicationContext().NOTIFICATION_SERVICE);
        notificationManager.notify(42, notification);

        String url = "http://www.domainURL.com/3d.png";
        new DownloadFileAsync().execute(url);
        }

        public class DownloadFileAsync extends AsyncTask<String, Integer, Void> {

        @Override
        protected void onPreExecute(){
            super.onPreExecute();
            }

        @Override
        protected Void doInBackground(String... aurl) {
            int count;
            try {
                URL url = new URL(aurl[0]);
                URLConnection conexion = url.openConnection();
                conexion.connect();

                int lengthOfFile = conexion.getContentLength();
                Log.d("ANDRO_ASYNC", "Lenght of file: " + lengthOfFile);

                File folder = new File(Environment.getExternalStorageDirectory() + "/MaxApps");
                boolean success = false;
                if (!folder.exists()) {
                    success = folder.mkdirs();
                }
                if (!success) {
                } else {
                }

                InputStream input = new BufferedInputStream(url.openStream());
                OutputStream output = new FileOutputStream("/sdcard/MaxApps/3d.png");

                byte data[] = new byte[1024];

                long total = 0;

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

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

            return null;
        }

        @Override
        protected void onProgressUpdate(Integer... progress) {          
            notification.contentView.setProgressBar(R.id.pbStatus, 100, progress[0], false);
            notificationManager.notify(42, notification);
            }

        protected void onPostExecute(String unused) {
            notificationManager.cancel(42);

            Notification MyN = new Notification(); MyN.icon = R.drawable.logo1;
            MyN.tickerText = "Download Complete";
            MyN.number = 1;
            MyN.setLatestEventInfo (getApplicationContext(), "Application Title", "Application Description", MyPI);

            MyNM.notify(1, MyN);
        }
    }
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-06T14:42:41+00:00Added an answer on June 6, 2026 at 2:42 pm

    The performance bottleneck seems to be the frequency at which the publishProgress is called. You should devise a way by which you publish the progress less often, without affecting the user experience.

    Suggestions:

    1. Increase the buffer size to a reasonable value like 16K or 32K
    2. Change the progress publishing mechanism as follows:

      while ((count = input.read(data)) != -1) {
          total += count;
          int progressPercent = (int) ((total*100)/lengthOfFile);
          if(progressPercent % 20 == 0){  //publish progress on completion of every 20%
              publishProgress(progressPercent);
          }
          output.write(data, 0, count);
      }
      
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have done a simple code for a slideshow that dynamicly loads images from
I have this delphi code that basically download a file (using Delphi 2010 +
I have some code that I know could be nicer if it's done in
i have done some code in jquery but where i commented in this bellow
I'm using Mongoose with Node.js and have the following code that will call the
I have a number of CSV files that I want to download from Yahoo
The code shows below what i have done till now. Now what i need
i have done self study on learning struts 2. i have used one code
I have done a small project, which consists of 5 excel sheet in, code
Quick question, What have I done wrong here. The purpose of this code is

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.