Transfering n no of files from server to client local machine

I want to transfer the 'n' no of files from server to client machine that path is specified by the user and the location is client machine local disk.front end is JSPBack end is JAVA
[205 byte] By [sathiyama] at [2007-10-2 5:49:53]
# 1
JSPs are Java, too. And they male no sense here. All you need is a simple servlet. Let it search for the filename submitted, set the return MIME type accordingly and serve it through the response's output stream.
CeciNEstPasUnProgrammeura at 2007-7-16 1:59:19 > top of Java-index,Java Essentials,Java Programming...
# 2
And you can only server one file at a time.
CeciNEstPasUnProgrammeura at 2007-7-16 1:59:19 > top of Java-index,Java Essentials,Java Programming...
# 3

>.....that path is specified by the user ....

even though user gives a path still it is unxepectable to download the things into client silently. you 'll get a download prompt in the client side.

the usual way to do it is

http://forum.java.sun.com/thread.jspa?forumID=45&threadID=555457

intelchipa at 2007-7-16 1:59:19 > top of Java-index,Java Essentials,Java Programming...