FileUpload
      for use in portlets conforming to JSR 168.See: Description
| Class | Description | 
|---|---|
| PortletFileUpload | High level API for processing file uploads. | 
| PortletRequestContext | Provides access to the request information needed for a request made to
 a portlet. | 
      An implementation of
      FileUpload
      for use in portlets conforming to JSR 168. This implementation requires
      only access to the portlet's current ActionRequest instance,
      and a suitable
      FileItemFactory
      implementation, such as
      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.
Copyright © 2002–2019 The Apache Software Foundation. All rights reserved.