Class FileUploadBase

  • Direct Known Subclasses:
    DiskFileUpload, FileUpload

    public abstract class FileUploadBase
    extends java.lang.Object

    High level API for processing file uploads.

    This class handles multiple files per single HTML widget, sent using multipart/mixed encoding type, as specified by RFC 1867. Use parseRequest(RequestContext) to acquire a list of FileItems associated with a given HTML widget.

    How the data for individual parts is stored is determined by the factory used to create them; a given part may be in memory, on disk, or somewhere else.

    • Field Detail

      • CONTENT_TYPE

        public static final java.lang.String CONTENT_TYPE
        HTTP content type header name.
        See Also:
        Constant Field Values
      • CONTENT_DISPOSITION

        public static final java.lang.String CONTENT_DISPOSITION
        HTTP content disposition header name.
        See Also:
        Constant Field Values
      • CONTENT_LENGTH

        public static final java.lang.String CONTENT_LENGTH
        HTTP content length header name.
        See Also:
        Constant Field Values
      • FORM_DATA

        public static final java.lang.String FORM_DATA
        Content-disposition value for form data.
        See Also:
        Constant Field Values
      • ATTACHMENT

        public static final java.lang.String ATTACHMENT
        Content-disposition value for file attachment.
        See Also:
        Constant Field Values
      • MULTIPART

        public static final java.lang.String MULTIPART
        Part of HTTP content type header.
        See Also:
        Constant Field Values
      • MULTIPART_FORM_DATA

        public static final java.lang.String MULTIPART_FORM_DATA
        HTTP content type header for multipart forms.
        See Also:
        Constant Field Values
      • MULTIPART_MIXED

        public static final java.lang.String MULTIPART_MIXED
        HTTP content type header for multiple uploads.
        See Also:
        Constant Field Values
      • MAX_HEADER_SIZE

        @Deprecated
        public static final int MAX_HEADER_SIZE
        Deprecated.
        This constant is no longer used. As of commons-fileupload 1.2, the only applicable limit is the total size of a parts headers, MultipartStream.HEADER_PART_SIZE_MAX.
        The maximum length of a single header line that will be parsed (1024 bytes).
        See Also:
        Constant Field Values
    • Constructor Detail

      • FileUploadBase

        public FileUploadBase()
    • Method Detail

      • isMultipartContent

        public static final boolean isMultipartContent​(RequestContext ctx)

        Utility method that determines whether the request contains multipart content.

        NOTE:This method will be moved to the ServletFileUpload class after the FileUpload 1.1 release. Unfortunately, since this method is static, it is not possible to provide its replacement until this method is removed.

        Parameters:
        ctx - The request context to be evaluated. Must be non-null.
        Returns:
        true if the request is multipart; false otherwise.
      • isMultipartContent

        @Deprecated
        public static boolean isMultipartContent​(HttpServletRequest req)
        Deprecated.
        1.1 Use the method on ServletFileUpload instead.
        Utility method that determines whether the request contains multipart content.
        Parameters:
        req - The servlet request to be evaluated. Must be non-null.
        Returns:
        true if the request is multipart; false otherwise.
      • getFileItemFactory

        public abstract FileItemFactory getFileItemFactory()
        Returns the factory class used when creating file items.
        Returns:
        The factory class for new file items.
      • setFileItemFactory

        public abstract void setFileItemFactory​(FileItemFactory factory)
        Sets the factory class to use when creating file items.
        Parameters:
        factory - The factory class for new file items.
      • getSizeMax

        public long getSizeMax()
        Returns the maximum allowed size of a complete request, as opposed to getFileSizeMax().
        Returns:
        The maximum allowed size, in bytes. The default value of -1 indicates, that there is no limit.
        See Also:
        setSizeMax(long)
      • setSizeMax

        public void setSizeMax​(long sizeMax)
        Sets the maximum allowed size of a complete request, as opposed to setFileSizeMax(long).
        Parameters:
        sizeMax - The maximum allowed size, in bytes. The default value of -1 indicates, that there is no limit.
        See Also:
        getSizeMax()
      • getFileSizeMax

        public long getFileSizeMax()
        Returns the maximum allowed size of a single uploaded file, as opposed to getSizeMax().
        Returns:
        Maximum size of a single uploaded file.
        See Also:
        setFileSizeMax(long)
      • setFileSizeMax

        public void setFileSizeMax​(long fileSizeMax)
        Sets the maximum allowed size of a single uploaded file, as opposed to getSizeMax().
        Parameters:
        fileSizeMax - Maximum size of a single uploaded file.
        See Also:
        getFileSizeMax()
      • getHeaderEncoding

        public java.lang.String getHeaderEncoding()
        Retrieves the character encoding used when reading the headers of an individual part. When not specified, or null, the request encoding is used. If that is also not specified, or null, the platform default encoding is used.
        Returns:
        The encoding used to read part headers.
      • setHeaderEncoding

        public void setHeaderEncoding​(java.lang.String encoding)
        Specifies the character encoding to be used when reading the headers of individual part. When not specified, or null, the request encoding is used. If that is also not specified, or null, the platform default encoding is used.
        Parameters:
        encoding - The encoding used to read part headers.
      • getItemIterator

        public FileItemIterator getItemIterator​(RequestContext ctx)
                                         throws FileUploadException,
                                                java.io.IOException
        Processes an RFC 1867 compliant multipart/form-data stream.
        Parameters:
        ctx - The context for the request to be parsed.
        Returns:
        An iterator to instances of FileItemStream parsed from the request, in the order that they were transmitted.
        Throws:
        FileUploadException - if there are problems reading/parsing the request or storing files.
        java.io.IOException - An I/O error occurred. This may be a network error while communicating with the client or a problem while storing the uploaded content.
      • parseRequest

        public java.util.List<FileItem> parseRequest​(RequestContext ctx)
                                              throws FileUploadException
        Processes an RFC 1867 compliant multipart/form-data stream.
        Parameters:
        ctx - The context for the request to be parsed.
        Returns:
        A list of FileItem instances parsed from the request, in the order that they were transmitted.
        Throws:
        FileUploadException - if there are problems reading/parsing the request or storing files.
      • parseParameterMap

        public java.util.Map<java.lang.String,​java.util.List<FileItem>> parseParameterMap​(RequestContext ctx)
                                                                                         throws FileUploadException
        Processes an RFC 1867 compliant multipart/form-data stream.
        Parameters:
        ctx - The context for the request to be parsed.
        Returns:
        A map of FileItem instances parsed from the request.
        Throws:
        FileUploadException - if there are problems reading/parsing the request or storing files.
        Since:
        1.3
      • getProgressListener

        public ProgressListener getProgressListener()
        Returns the progress listener.
        Returns:
        The progress listener, if any, or null.
      • setProgressListener

        public void setProgressListener​(ProgressListener pListener)
        Sets the progress listener.
        Parameters:
        pListener - The progress listener, if any. Defaults to null.