Multiple file upload

HiWe want to upload multiple files from a specific path on client machine to the WebServer .Can anyone suggest some idea for this.Thanx
[163 byte] By [sachingusain] at [2007-9-26 1:22:34]
# 1
For multipart uploads you should check com.oreilly.servlet at http://www.servlets.com/cos/index.html for a start.
HaPe at 2007-6-29 0:59:50 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 2
hii know that but i want a user to select a directory and then our application takes control and upload all the files in that directory automatically without user intervention.Now can anyone suggest that.thanx ,please do not suggest Orielly package
sachingusain at 2007-6-29 0:59:50 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 3

The native support provided by the HTML specification only allows the ability to upload one file at a time. In other words, the user would have to take action for each file.

In order to provide the ability for the user to choose a directory and upload the entire directory, you need to code an applet or ActiveX control. With either approach, I believe you would have to sign the applet or control so that you may read the user's hard drive.

Check out http://www.jspsmart.com/, they might have what you're looking for.

jpardi at 2007-6-29 0:59:50 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...