There is an online file (i.e. http://www.website.com/information.asp) I need to grab and save to a directory. I know there are several methods for grabbing and reading online files line-by-line (i.e. URL), but is there a way to just download and save the file using Java?
|
5
|
|
|
|
|
|
give a try to Java NIO:
using transferForm() is potentially much more efficient than a simple loop that reads from the source channel and writes to this channel. Many operating systems can transfer bytes directly from the source channel into the filesystem cache without actually copying them. Check more about it here. |
||||||||||||
|
|
|
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 |
||
|
|
|
I found this example which is probably overkill but you can extract the relavant parts yourself. |
||
|
|
|
|
Grab the file and read it line-by-line, as you mention, and save the lines to a local file. |
|||
|
|
