I need to download some .xls files from a web site. Since they are kind of big, about 17MB each, I rather not use BufferedReader to open them, read in the data and then write data to a local file. I noticed that FileChannel class has some really nice features, which makes transfer big files much faster and easier. But I cannot figure out how to use FileChannel with online file's URL, instead of local file.
Have someone ever done these before? Besides FileChannel and read/write data using BufferedReader, does anyone have any other suggestions on downloading big files in
java?
Thanks a lot.