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 6551439
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T12:20:19+00:00 2026-05-25T12:20:19+00:00

It works just fine when I run it in a thread, but I want

  • 0

It works just fine when I run it in a thread, but I want to use Asynctask and when I execute my version of it, nothing happens:

try {
  //set the download URL, a url that points to a file on the internet
  //this is the file to be downloaded
  URL url = new URL(filename2);

  //create the new connection
  HttpURLConnection urlConnection = (HttpURLConnection) url.openConnection();

  //set up some things on the connection
  urlConnection.setRequestMethod("GET");
  urlConnection.setDoOutput(true);

  //and connect!
  urlConnection.connect();

  //set the path where we want to save the file
  //in this case, going to save it on the root directory of the
  //sd card.
  SDCardRoot = Environment.getExternalStorageDirectory() + "/download/";
  //create a new file, specifying the path, and the filename
  //which we want to save the file as.
  File file = new File(SDCardRoot,filename3);

  //this will be used to write the downloaded data into the file we created
  FileOutputStream fileOutput = new FileOutputStream(file);

  //this will be used in reading the data from the internet
  InputStream inputStream = urlConnection.getInputStream();

  //this is the total size of the file
  //int totalSize = urlConnection.getContentLength();
  //variable to store total downloaded bytes
  int downloadedSize = 0;

  //create a buffer...
  byte[] buffer = new byte[1024];
  int bufferLength = 0; //used to store a temporary size of the buffer

  //now, read through the input buffer and write the contents to the file
  while ((bufferLength = inputStream.read(buffer)) > 0) {
    //add the data in the buffer to the file in the file output stream (the file on the sd card
    fileOutput.write(buffer, 0, bufferLength);
    //add up the size so we know how much is downloaded
    downloadedSize += bufferLength;
    //this is where you would do something to report the prgress, like this maybe
    //updateProgress(downloadedSize, totalSize);
    //publishProgress((int)(total*100/lenghtOfFile));
  }

  //close the output stream when done
  fileOutput.close();
//catch some possible errors...
} catch (MalformedURLException e) {             
  e.printStackTrace();
} catch (IOException e) {               
  e.printStackTrace();
}

THIS IS MY ATTEMPT AS REQUESTED:

      private class DownloadFile extends AsyncTask<Void, Integer, Long> {
       protected void onProgressUpdate(Integer... progress) {

    }

    protected void onPostExecute(Long result) {
        Intent in = new Intent(mainmenu.this, DownloadService.class);           
        stopService(in);

    }

    @Override
    protected Long doInBackground(Void... params) {
        try {

            //set the download URL, a url that points to a file on the internet
            //this is the file to be downloaded
            URL url = new URL(filename2);


            //create the new connection
            HttpURLConnection urlConnection = (HttpURLConnection) url.openConnection();

            //set up some things on the connection
            urlConnection.setRequestMethod("GET");
            urlConnection.setDoOutput(true);

            //and connect!
            urlConnection.connect();

            //set the path where we want to save the file
            //in this case, going to save it on the root directory of the
            //sd card.
            SDCardRoot = Environment.getExternalStorageDirectory() + "/download/";
            //create a new file, specifying the path, and the filename
            //which we want to save the file as.
            File file = new File(SDCardRoot,filename3);

            //this will be used to write the downloaded data into the file we created
            FileOutputStream fileOutput = new FileOutputStream(file);

            //this will be used in reading the data from the internet
            InputStream inputStream = urlConnection.getInputStream();

            //this is the total size of the file
            //int totalSize = urlConnection.getContentLength();
            //variable to store total downloaded bytes
            int downloadedSize = 0;

            //create a buffer...
            byte[] buffer = new byte[1024];
            int bufferLength = 0; //used to store a temporary size of the buffer

            //now, read through the input buffer and write the contents to the file
            while ( (bufferLength = inputStream.read(buffer)) > 0 ) {
                    //add the data in the buffer to the file in the file output stream (the file on the sd card
                    fileOutput.write(buffer, 0, bufferLength);
                    //add up the size so we know how much is downloaded
                    downloadedSize += bufferLength;
                    //this is where you would do something to report the prgress, like this maybe
                    //updateProgress(downloadedSize, totalSize);
                    //publishProgress((int)(total*100/lenghtOfFile));


            }
            //close the output stream when done
            fileOutput.close();





    //catch some possible errors...
    } catch (MalformedURLException e) {             
            e.printStackTrace();
    } catch (IOException e) {               
            e.printStackTrace();
    }
        return null;
    }


}
  • 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-05-25T12:20:19+00:00Added an answer on May 25, 2026 at 12:20 pm

    here you go

    public class WebRequest extends AsyncTask<URL, Void, String> {
    ProgressDialog dialog;
    Context _context;
    
    String _title;
    String _message;
    
    public WebRequest(Context context, 
            String ProgressTitle, String ProgressMessage) {
        this._context = context;
    
        this._title = ProgressTitle;
        this._message = ProgressMessage;
    }
    
    @Override
    protected void onPreExecute() {
    
        // TODO Auto-generated method stub
        dialog = new ProgressDialog(_context);
        dialog.setTitle(_title);
        dialog.setMessage(_message);
        dialog.show();
    
    }
    
    @Override
    protected String doInBackground(URL... params) {
        // TODO Auto-generated method stub
    
        try {
    
            //set the download URL, a url that points to a file on the internet
            //this is the file to be downloaded
            URL url = params[0];
    
    
            //create the new connection
            HttpURLConnection urlConnection = (HttpURLConnection) url.openConnection();
    
            //set up some things on the connection
            urlConnection.setRequestMethod("GET");
            urlConnection.setDoOutput(true);
    
            //and connect!
            urlConnection.connect();
    
            //set the path where we want to save the file
            //in this case, going to save it on the root directory of the
            //sd card.
            SDCardRoot = Environment.getExternalStorageDirectory() + "/download/";
            //create a new file, specifying the path, and the filename
            //which we want to save the file as.
            File file = new File(SDCardRoot,filename3);
    
            //this will be used to write the downloaded data into the file we created
            FileOutputStream fileOutput = new FileOutputStream(file);
    
            //this will be used in reading the data from the internet
            InputStream inputStream = urlConnection.getInputStream();
    
            //this is the total size of the file
            //int totalSize = urlConnection.getContentLength();
            //variable to store total downloaded bytes
            int downloadedSize = 0;
    
            //create a buffer...
            byte[] buffer = new byte[1024];
            int bufferLength = 0; //used to store a temporary size of the buffer
    
            //now, read through the input buffer and write the contents to the file
            while ( (bufferLength = inputStream.read(buffer)) > 0 ) {
                    //add the data in the buffer to the file in the file output stream (the     file on the sd card
                    fileOutput.write(buffer, 0, bufferLength);
                    //add up the size so we know how much is downloaded
                    downloadedSize += bufferLength;
                    //this is where you would do something to report the prgress, like this maybe
                    //updateProgress(downloadedSize, totalSize);
                    //publishProgress((int)(total*100/lenghtOfFile));
    
    
            }
            //close the output stream when done
            fileOutput.close();
    
           return "Success";
    
    
    
    //catch some possible errors...
    } catch (MalformedURLException e) {             
            e.printStackTrace();
        return "Failed";
    } catch (IOException e) {               
            e.printStackTrace();
               return "Failed";
    }
    }
    
    @Override
    protected void onPostExecute(String result) {
        // TODO Auto-generated method stub
    
        if (dialog.isShowing())
            dialog.cancel();
    
        Toast.makeText(_context,result,Toast.LENGTH_LONG);
    
    }
    
    }
    

    //using this

     WebRequest request = new WebRequest(context,"Downloading","Please wait..");
     request.Execute(object of URL);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following code, WHICH WORKS JUST FINE...WORKS AS I WANT. But if
I have written a SQL query that works just fine, but am having a
I generate csv files with fputcsv and it works just fine, but when I
I generate csv files with fputcsv and it works just fine, but when I
I have a SqlDump.sql file that works just fine when I apply it using
This is a problem where firefox works just fine, while chrome has the problem.
This aspect of my login system works just fine if I have the return
I currently have a UINavigationController based application that works just fine. I'd like to
I have a Firefox 3.6.2 problem (3.5.x works just fine). This is the code:
I've got a UITabBar based application that works just fine. Under certain circumstances I

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.