There is an online file (such as http://www.example.com/information.asp) I need to grab and save to a directory. I know there are several methods for grabbing and reading online files (URLs) line-by-line, but is there a way to just download and save the file using Java?
|
|
||||
|
|
|
give a try to Java NIO:
using Check more about it here. |
|||||||||||||||||||||
|
|
Use apache commons-io, just one line code:
|
|||||||||||||||
|
You'll need to handle exceptions, probably external to this method. |
|||||||||||||
|
|
Downloading a file requires you to read it, either way you will have to go through the file in some way. Instead of line by line, you can just read it by bytes from the stream:
|
|||||||
|
|
Personally, I've found Apache's HttpClient to be more than capable of everything I've needed to do with regards to this. Here is a great tutorial on using HttpClient |
|||
|
|
|
|||
|
|
|
Grab the file and read it line-by-line, as you mention, and save the lines to a local file. |
||||
|
|
