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

I wrote a simple downloader as Java applet. During some tests I discover that my way of downloading files is not even half as perfect as e.g. Firefox's way of doing it.

My code:

InputStream is = null;
FileOutputStream os = null;
os = new FileOutputStream(...);
URL u = new URL(...);
URLConnection uc = u.openConnection();
is = uc.getInputStream();
final byte[] buf = new byte[1024];
for(int count = is.read(buf);count != -1;count = is.read(buf)) {
    os.write(buf, 0, count);
}

Sometimes my applet works fine, sometimes unexpected things happen. E.g. from time to time, in the middle of downloading applet throws an IO exception or just lose a connection for a while, without possibility to return to current download and finish it.

I know that really advanced way is too complicated for single unexperieced Java programmer, but maybe you know some techniques to minimalise risk of appearing these problems.

Thanks in advance

Styler

share|improve this question
What I/O exception do you get? – Sorceror Jun 14 '11 at 17:47
2  
blahblahblahblahblah -- where's the stacktrace? – mre Jun 14 '11 at 17:48
2  
not even half as perfect - how do you measure perfection? (Just kidding.) – Paŭlo Ebermann Jun 14 '11 at 17:51
I didn't write it down - I'm sorry. It happens only from time to time. – Styler Jun 14 '11 at 18:02

1 Answer

up vote 1 down vote accepted

So you want to resume your download.

If you get an IOException on reading from the URL, there was a problem with the connection. This happens. Now you must note how much you already did download, and open a new connection which starts from there.

To do this, use setRequestProperty() on the second, and send the right header fields for "I want only the range of the resource starting with ...". See section 14.35.2 Range Retrieval Requests in the HTTP 1.1 specification. You should check the header fields on the response to see if you really got back a range, though.

share|improve this answer
Thank you very much. I'll use it. But what can I do to prevent and minimalise number of errors? I thought about sth like setting a longer time of waiting for data from server. – Styler Jun 14 '11 at 18:07
There is a setReadTimeout method on URLConnection, which might help. I didn't ever really have problems, which might be because I have a good internet connection and seldomly use URLConnection. – Paŭlo Ebermann Jun 14 '11 at 18:11
Thanks again, Paulo – Styler Jun 14 '11 at 18:13

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.