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

I wonder what is the most elegant and optimal way to stop downloading a file. I have a simple applet which is supposed to download requested files from user account at my website.

I would like to offer my users possibility to stop download at any moment. Simplet version of 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);
}

My only idea is to define new variable e.g. MyStop, make it false and put in my loop instructions:

if(MyStop == true) { break; }

MyStop would be changing into true when user clicked the "Stop" button.

That's what I was thinking about but I am pretty sure that there is a better solution.

Thanks in advance. Styler

share|improve this question
I don't see anything wrong with that idea. – Mike Kwan Jun 8 '11 at 19:04

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.