I want to offer to upload multiple files clicking upload button only once. Can I use multipart to send files? If yes, then how?
P.S.: I don't want to use flash or send one file at a time.
I want to offer to upload multiple files clicking upload button only once. Can I use multipart to send files? If yes, then how?
P.S.: I don't want to use flash or send one file at a time.
In you HTML, you can do the following :
adding
multiple
to the end of your input grants you what you want.Yes, you can. Try apache fileupload library, you may refer to this question on stackoverflow: Multiple file upload in Jsp using Apache commons file upload API or this full example. Also you may take use of Spring by referencing this article.
Hope This Helps...