How do I download several files at the same time?
Created May 7, 2012
Alex Chaffee It's tough to get HTTP to return more than one file at a time. You could
- just return a page listing all the files, and ask the user to click each link
- package all the files into a Zip archive using the java.util.zip package classes, and download that file
- write a JavaScript function that downloads each of the files in turn
[Keywords: file download multiple files several files many files at once]