Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I use following code to download...

public void run()
{
    RandomAccessFile file=null;    //download wiil be stored in this file
    InputStream in=null;           //InputStream to read from
    try
    {

         HttpURLConnection conn=(HttpURLConnection)url.openConnection();    
     conn.setRequestProperty("Range","bytes="+downloaded+"-");
     if(user!=null && pwd!=null){
        String userPass=user+":"+pwd;
        String encoding = new sun.misc.BASE64Encoder().encode (userPass.getBytes());
        conn.setRequestProperty ("Authorization", "Basic " + encoding); 
     }

         conn.connect();

     //..More code 

     if(status==Status.CONNECTING)
        status=Status.DOWNLOADING;


         file=new RandomAccessFile(location,"rw");
         file.seek(downloaded);
         in=conn.getInputStream();      
     byte[] buffer;     
         while(status==Status.DOWNLOADING)
         {
            if(size-downloaded>Constants.MAX_BUFFER_SIZE)  //MAX_BUFFER_SIZE=1024
      buffer=new byte[Constants.MAX_BUFFER_SIZE];
    else
      buffer=new byte[size-downloaded];

        int read=in.read(buffer);  //reading in Buffer

        if(read==-1)
           break;

       //write to file
        file.write(buffer,0,read);
        downloaded+=read;

        //..More code
        }  //end of while


}

I am using above code to download a file from URL in loops. I am using InputStream from downloading(reading). Should i use Channels to improve performance ?

Please guide me by watching my code to enhance downloading speed.

share|improve this question
How is enabling HTTPS downloads, related to your question? – Vineet Reynolds Jun 7 '11 at 14:51
Please consider using something like HttpClient. Much more powerful, worth learning the abstraction, and much less buggy than HttpURLConnection – MJB Jun 10 '11 at 3:46

1 Answer

Wrap the InputStream with a BufferedInputStream and increase the buffer size. Switching to a channel implementation wouldn't improve much on the client side, even if it's rather good to use on the server side.

You should also only create one byte[] and reuse it. Don't create it each iteration in the loop.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.