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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T18:46:39+00:00 2026-06-01T18:46:39+00:00

I’m trying to make android download a zip file from my web server using

  • 0

I’m trying to make android download a zip file from my web server using a php page to download it.

If I download using a static link to the zip file, it works great, but i’m trying to download using a php file with this code:

function file_list($d,$x){
   foreach(array_diff(scandir($d,1),array('.','..')) as $f)if(is_file($d.'/'.$f)&&(($x)?ereg($x.'$',$f):1))$l[]=$f;
   return $l;
}

$arr = file_list("../download/",".zip");

$filename = $arr[0];
$filepath = "../download/".$arr[0];

if(!file_exists($filepath)){
   die('Error: File not found.');
} else {
   // Set headers
   header("Cache-Control: public");
   header("Content-Description: File Transfer");
   header("Content-Disposition: attachment; filename=$filename");
   header("Content-Type: application/zip");
   header("Content-Transfer-Encoding: binary");

   readfile($filepath);
}

If I access the php file in my browser, it downloads the zip just great!

Now, in the Android side, it downloads like it’s supposed but the name of the zip is getZip.php (php file name) and the file size is 22.

This is the code that does the downloading stuff on the Android

        int count;

        try {
            downloadCoords();
            URL url = new URL(aurl[0]);
            URLConnection conexion = url.openConnection();
            conexion.connect();

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

            File f = new File(Environment.getExternalStorageDirectory().getAbsolutePath());
            if(!f.isDirectory()){
                f.mkdirs();
            }

            Uri u = Uri.parse(url.toString());
            File uf = new File(""+u);
            zipname = uf.getName();
            Log.d("ANDRO_ASYNC", "Zipname: " + zipname);

            File zipSDCARD = new File(Environment.getExternalStorageDirectory().getAbsolutePath()+zipname);
            if(!zipSDCARD.isFile()){
                Log.d("zipSDCARD.isFile()","false");

                InputStream input = new BufferedInputStream(url.openStream());
                OutputStream output = new FileOutputStream("/sdcard/" + zipname);

                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();
            }
            successDownload = true;
        } catch (Exception e) {
            successDownload = false;
            Log.e("Error","DownloadZip",e);
        }

What needs to be done, is getting the zipname correctly and the ziplength too.

Thanks in advance.

  • 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-01T18:46:40+00:00Added an answer on June 1, 2026 at 6:46 pm

    Well, I solved it using php to write a link to the zip dynamically to the screen using this script:

    function file_list($d,$x){
        foreach(array_diff(scandir($d,1),array('.','..')) as $f)if(is_file($d.'/'.$f)&&(($x)?ereg($x.'$',$f):1))$l[]=$f;
        return $l;
    }
    
    $arr = file_list("../download/",".zip");
    
    $filename = $arr[0];
    $filepath = "http://".$_SERVER['SERVER_NAME']."/download/".$arr[0];
    print($filepath);
    

    Then on the android, I used a BufferedReader to get the link correctly:

    private String getZipURL(){
        String result = "";
        InputStream is = null;
        try{
            String url = ZipURL;
            HttpPost httppost = new HttpPost(url);
            HttpParams httpParameters = new BasicHttpParams();
    
            int timeoutConnection = 3000;
            HttpConnectionParams.setConnectionTimeout(httpParameters, timeoutConnection);
    
            int timeoutSocket = 3000;
            HttpConnectionParams.setSoTimeout(httpParameters, timeoutSocket);
    
            DefaultHttpClient httpclient = new DefaultHttpClient(httpParameters);
    
            HttpResponse response = httpclient.execute(httppost);
            HttpEntity entity = response.getEntity();
            is = entity.getContent();
        }catch(Exception e){
            Log.e("getZipURL", "Error in http connection "+e.toString());
            return null;
        }
    
        try{
            BufferedReader reader = new BufferedReader(new InputStreamReader(is,"iso-8859-1"),8);
            StringBuilder sb = new StringBuilder();
            String line = null;
            while ((line = reader.readLine()) != null) {
                sb.append(line + "\n");
            }
            is.close();
    
            result=sb.toString();
            return result;
        }catch(Exception e){
            Log.e("convertZipURL", "Error converting result "+e.toString());
            return null;
        }
    }
    

    It may seem wrong, but it works as I want. I posted the code so I can get a workaround for someone with the same problem. Thanks!

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

Sidebar

Related Questions

That's pretty much it. I'm using Nokogiri to scrape a web page what has
Basically, what I'm trying to create is a page of div tags, each has
link Im having trouble converting the html entites into html characters, (&# 8217;) i
I have a string like this: La Torre Eiffel paragonata all’Everest What PHP function
I am trying to render a haml file in a javascript response like so:
I'm using v2.0 of ClassTextile.php, with the following call: $testimonial_text = $textile->TextileRestricted($_POST['testimonial']); ... and
We are using XSLT to translate a RIXML file to XML. Our RIXML contains
I'm trying to decode HTML entries from here NYTimes.com and I cannot figure out
I'm trying to create an if statement in PHP that prevents a single post
I'm making a simple page using Google Maps API 3. My first. One marker

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.