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

Possible Duplicate:
How do you Programmatically Download a Webpage in Java

How to download a file using java. So for example, I want to construct a program which will take some input e.g the website download. and then download the file. Please note that I am not looking for the code or anything. I just want to be pointed in the correct direction and that's it.

share|improve this question
how is this a duplicate, can you not read? I want to download a file not a webpage.... read the question then comment if it is a duplicate or not. – gekkostate May 23 '11 at 14:02
2  
I can read. Downloading a file and a webpage over the internet is the exact same process. Technically speaking, a webpage is a file. – jjnguy May 23 '11 at 14:03
@jjnguy i want to download a file e.g .pdf .xls etc when i was writing that i was not using techincally terms but terms where your not supposed to technical. – gekkostate May 23 '11 at 14:08
1  
your accepted answer is using the same process as the question I linked to. You can download pdfs and excel files over http just the same as you would download html files. – jjnguy May 23 '11 at 14:15

marked as duplicate by jjnguy, MarvinLabs, khachik, Lord Torgamus, bmargulies May 23 '11 at 14:16

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

4 Answers

up vote 4 down vote accepted

If you want to download a file from a URL, have a look at java.net.URLConnection.

share|improve this answer

By using HttpURLConnection (better than java.net.URLConnection IMHO)

share|improve this answer
1  
That link points to a really old version of Java. – jzd May 23 '11 at 13:58
sorry - google's fault. Fixed. Thanks !!! – msalvadores May 23 '11 at 13:59
Should be this.. download.oracle.com/javase/6/docs/api/java/net/… – notthetup May 23 '11 at 14:00
thanks. Yes Google still returns at lot of 1.4 results because so many other pages still reference them. – jzd May 23 '11 at 14:01

URLConnection.getInputStream() is what you're looking for. Moving the actual bytes is a bit tedious and error-prone, so if you just want to get it done, using an existing, tested implementation like FileUtils from Apache commons IO would be the best idea.

share|improve this answer

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