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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T10:45:31+00:00 2026-05-30T10:45:31+00:00

I having problem with file download, I am able to download file in emulator

  • 0

I having problem with file download,

I am able to download file in emulator but It is not working with the phone.
I have defined the permission for the Internet and write SD card.

I having one doc file on server, and if user click on download. It downloads the file. This works fine in emulator but not working in phone.

Edit
My code for download file

public void downloadFile(String _url, String fileName) {
        File PATH = Environment
                .getExternalStoragePublicDirectory(Environment.DIRECTORY_DOWNLOADS);
        try {
            PATH.mkdirs();
            URL url = new URL(_url); // you can write here any link
            File file = new File(PATH, fileName);

            long startTime = System.currentTimeMillis();
            Log.d("Manager", "download begining");
            Log.d("DownloadManager", "download url:" + url);
            Log.d("DownloadManager", "downloaded file name:" + fileName);
            /* Open a connection to that URL. */
            URLConnection ucon = url.openConnection();

            /*
             * Define InputStreams to read from the URLConnection.
             */
            InputStream is = ucon.getInputStream();
            BufferedInputStream bis = new BufferedInputStream(is);

            /*
             * Read bytes to the Buffer until there is nothing more to read(-1).
             */
            ByteArrayBuffer baf = new ByteArrayBuffer(50);
            int current = 0;
            while ((current = bis.read()) != -1) {
                baf.append((byte) current);
            }

            /* Convert the Bytes read to a String. */
            FileOutputStream fos = new FileOutputStream(file);
            fos.write(baf.toByteArray());
            fos.close();
            Log.d("ImageManager",
                    "download ready in"
                            + ((System.currentTimeMillis() - startTime) / 1000)
                            + " sec");

        } catch (IOException e) {
            Log.d("ImageManager", "Error: " + e);
        }
    }
  • 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-30T10:45:32+00:00Added an answer on May 30, 2026 at 10:45 am

    try the snippets given bellow…

    File PATH = Environment
                    .getExternalStoragePublicDirectory(Environment.DIRECTORY_DOWNLOADS);
            try {
                //set the download URL, a url that points to a file on the internet
                //this is the file to be downloaded
                _url = _url.replace(" ", "%20");
                URL url = new URL(_url);
    
                //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();
    
                //create a new file, specifying the path, and the filename
                //which we want to save the file as.
                File file = new File(PATH,fileName);
    
                //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();
                Log.i("Download", totalSize+"");
                //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);
                }
                //close the output stream when done
                fileOutput.close();
                return true;
    
        //catch some possible errors...
        } catch (MalformedURLException e) {
                e.printStackTrace();
        } catch (IOException e) {
                e.printStackTrace();
        }
    

    make sure you have enters the correct download path(url)

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm having a build problem with a specific file that I'm not being able
I have a flash file menu i am having problem while link it to
I'm having a problem with a file download where the download is replacing all
I am having a problem I can run ndk outside of eclipse but not
I am following a tutorial to download file from server. But having some trouble.
I am having a problem with a file i am writing too, basically what
I am having a problem decrypting a file using RSA public key decryption. My
I'm having a problem writing to a file: FileInputStream fin; try { fin =
I'm having a problem parsing a JSON file in AS3. Im trying to parse
I'm having a problem using deploy:deploy-file with snapshots I'd like some advice on please.

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.