We need build something in our
java web application to download a zip file from server , and we like to control the directory where the files can be downloaded by our users. What we really like is to save the zip file from server and unzip it to a predefined directory at user's local PC, eg. C:\download.
I like to know what kind of java technology or approach is good to perform such task. On server side, we will create a zip file for each different user. In our
jsp page, we will display a message letting user download and save the zip file to a predefined local directory at his/her local disk. But we do not want the user do something like mouse right click and "Save As", since we have no way to control the directory the files are downloaded to.
I know this is a strange requirement to many of you. Just FYI: We are building an offline course player and we like user play a course in offline mode, and we will resynchronize the course tracking data back to server once he/she reconnects to the network. To control the local directory path will make the resynchronizing much easier.
Your input is greatly appreciated.
BTW: This is a web application built only for our company's internal users. So, let us assume there are no security concern as seen in normal web application.