An implementation of {@link org.apache.commons.fileupload.FileUpload FileUpload} for use in portlets conforming to JSR 168. This implementation requires only access to the portlet's current ActionRequest instance, and a suitable {@link org.apache.commons.fileupload.FileItemFactory FileItemFactory} implementation, such as {@link org.apache.commons.fileupload.disk.DiskFileItemFactory DiskFileItemFactory}.

The following code fragment demonstrates typical usage.

        DiskFileItemFactory factory = new DiskFileItemFactory();
        // Configure the factory here, if desired.
        PortletFileUpload upload = new PortletFileUpload(factory);
        // Configure the uploader here, if desired.
        List fileItems = upload.parseRequest(request);

Please see the FileUpload User Guide for further details and examples of how to use this package.