JSP multi-File Upload (multiple files can be selected at a time)

Source: Internet
Author: User

Combined with flash, you can easily upload multiple files. You can select multiple files at a time.

This example uses three third-party libraries:

Apache commons fileupload http://commons.apache.org/fileupload/

Apache commons Io http://commons.apache.org/io/

Swfupload http://swfupload.org/

Paste belowCode.

The first is the form for upload.

 
  "> Swfuploadv2.2.0simple demo

Then the receiver JSP

 items; try {items = upload. parserequest (request);} catch (fileuploadexception e) {// throw new servletexception (E );} // all objects have been successfully updated before they have been updated before waiting for (Object VAL: items) {fileitem item = (fileitem) val; If (item. isformfield () {// type = "file" other than "file" contains multiple outgoing records. println (item. getfieldname ();} else {// type = "file" contains invalid variable file F = new file (item. getname (); try {item. write (new file ("C:/Windows/Temp", F. getname (); out. println (F. getname ();} catch (ioexception e) {Throw E;} catch (exception e) {Throw new servletexception (e) ;}}%> 
Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.