public abstract class FileUploadBase extends Object
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.
| Modifier and Type | Class and Description |
|---|---|
static class |
FileUploadBase.FileSizeLimitExceededException
Thrown to indicate that A files size exceeds the configured maximum.
|
static class |
FileUploadBase.FileUploadIOException
Signals that a FileUpload I/O exception of some sort has occurred.
|
static class |
FileUploadBase.InvalidContentTypeException
Thrown to indicate that the request is not a multipart request.
|
static class |
FileUploadBase.IOFileUploadException
Thrown to indicate an IOException.
|
protected static class |
FileUploadBase.SizeException
This exception is thrown, if a requests permitted size
is exceeded.
|
static class |
FileUploadBase.SizeLimitExceededException
Thrown to indicate that the request size exceeds the configured maximum.
|
static class |
FileUploadBase.UnknownSizeException
Deprecated.
1.2 As of commons-fileupload 1.2, the presence of a
content-length header is no longer required.
|
| Modifier and Type | Field and Description |
|---|---|
static String |
ATTACHMENT
Content-disposition value for file attachment.
|
static String |
CONTENT_DISPOSITION
HTTP content disposition header name.
|
static String |
CONTENT_LENGTH
HTTP content length header name.
|
static String |
CONTENT_TYPE
HTTP content type header name.
|
static int |
DEFAULT_PART_HEADER_SIZE_MAX
Default per part header size limit in bytes.
|
static String |
FORM_DATA
Content-disposition value for form data.
|
static int |
MAX_HEADER_SIZE
Deprecated.
This constant is no longer used. As of commons-fileupload
1.6, the applicable limit is the total size of a single part's headers,
getPartHeaderSizeMax() in bytes. |
static String |
MULTIPART
Part of HTTP content type header.
|
static String |
MULTIPART_FORM_DATA
HTTP content type header for multipart forms.
|
static String |
MULTIPART_MIXED
HTTP content type header for multiple uploads.
|
static String |
MULTIPART_RELATED
HTTP content type header for multiple related data.
|
| Constructor and Description |
|---|
FileUploadBase()
Constructs a new instance.
|
| Modifier and Type | Method and Description |
|---|---|
protected FileItem |
createItem(Map<String,String> headers,
boolean isFormField)
Deprecated.
1.2 This method is no longer used in favor of
internally created instances of
FileItem. |
protected byte[] |
getBoundary(String contentType)
Gets the boundary from the
Content-type header. |
protected String |
getFieldName(FileItemHeaders headers)
Gets the field name from the
Content-disposition
header. |
protected String |
getFieldName(Map<String,String> headers)
Deprecated.
1.2.1 Use
getFieldName(FileItemHeaders). |
long |
getFileCountMax()
Returns the maximum number of files allowed in a single request.
|
abstract FileItemFactory |
getFileItemFactory()
Returns the factory class used when creating file items.
|
protected String |
getFileName(FileItemHeaders headers)
Gets the file name from the
Content-disposition
header. |
protected String |
getFileName(Map<String,String> headers)
Deprecated.
1.2.1 Use
getFileName(FileItemHeaders). |
long |
getFileSizeMax()
Returns the maximum allowed size of a single uploaded file,
as opposed to
getSizeMax(). |
protected String |
getHeader(Map<String,String> headers,
String name)
Deprecated.
1.2.1 Use
FileItemHeaders.getHeader(String). |
String |
getHeaderEncoding()
Gets the character encoding used when reading the headers of an
individual part.
|
FileItemIterator |
getItemIterator(RequestContext ctx)
Processes an RFC 1867
compliant
multipart/form-data stream. |
protected FileItemHeaders |
getParsedHeaders(String headerPart)
Parses the
header-part and returns as key/value
pairs. |
int |
getPartHeaderSizeMax()
Obtain the per part size limit for headers.
|
ProgressListener |
getProgressListener()
Returns the progress listener.
|
long |
getSizeMax()
Returns the maximum allowed size of a complete request, as opposed
to
getFileSizeMax(). |
static boolean |
isMultipartContent(javax.servlet.http.HttpServletRequest req)
Deprecated.
1.1 Use the method on
ServletFileUpload instead. |
static boolean |
isMultipartContent(RequestContext ctx)
Utility method that determines whether the request contains multipart
content.
|
protected FileItemHeadersImpl |
newFileItemHeaders()
Creates a new instance of
FileItemHeaders. |
protected Map<String,String> |
parseHeaders(String headerPart)
Deprecated.
1.2.1 Use
getParsedHeaders(String) |
Map<String,List<FileItem>> |
parseParameterMap(RequestContext ctx)
Processes an RFC 1867
compliant
multipart/form-data stream. |
List<FileItem> |
parseRequest(javax.servlet.http.HttpServletRequest req)
Deprecated.
1.1 Use
ServletFileUpload.parseRequest(HttpServletRequest) instead. |
List<FileItem> |
parseRequest(RequestContext ctx)
Processes an RFC 1867
compliant
multipart/form-data stream. |
void |
setFileCountMax(long fileCountMax)
Sets the maximum number of files allowed per request.
|
abstract void |
setFileItemFactory(FileItemFactory factory)
Sets the factory class to use when creating file items.
|
void |
setFileSizeMax(long fileSizeMax)
Sets the maximum allowed size of a single uploaded file,
as opposed to
getSizeMax(). |
void |
setHeaderEncoding(String encoding)
Specifies the character encoding to be used when reading the headers of
individual part.
|
void |
setPartHeaderSizeMax(int partHeaderSizeMax)
Sets the per part size limit for headers.
|
void |
setProgressListener(ProgressListener listener)
Sets the progress listener.
|
void |
setSizeMax(long sizeMax)
Sets the maximum allowed size of a complete request, as opposed
to
setFileSizeMax(long). |
public static final String CONTENT_TYPE
public static final String CONTENT_DISPOSITION
public static final String CONTENT_LENGTH
public static final String FORM_DATA
public static final String ATTACHMENT
public static final String MULTIPART
public static final String MULTIPART_FORM_DATA
public static final String MULTIPART_MIXED
public static final String MULTIPART_RELATED
@Deprecated public static final int MAX_HEADER_SIZE
getPartHeaderSizeMax() in bytes.public static final int DEFAULT_PART_HEADER_SIZE_MAX
@Deprecated public static boolean isMultipartContent(javax.servlet.http.HttpServletRequest req)
ServletFileUpload instead.req - The servlet request to be evaluated. Must be non-null.true if the request is multipart;
false otherwise.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.
ctx - The request context to be evaluated. Must be non-null.true if the request is multipart;
false otherwise.@Deprecated protected FileItem createItem(Map<String,String> headers, boolean isFormField)
FileItem.FileItem instance.headers - A Map containing the HTTP request
headers.isFormField - Whether or not this item is a form field, as
opposed to a file.FileItem instance.protected byte[] getBoundary(String contentType)
Content-type header.contentType - The value of the content type header from which to
extract the boundary value.protected String getFieldName(FileItemHeaders headers)
Content-disposition
header.headers - A Map containing the HTTP request headers.encapsulation.@Deprecated protected String getFieldName(Map<String,String> headers)
getFieldName(FileItemHeaders).Content-disposition
header.headers - A Map containing the HTTP request headers.encapsulation.public long getFileCountMax()
public abstract FileItemFactory getFileItemFactory()
protected String getFileName(FileItemHeaders headers)
Content-disposition
header.headers - The HTTP headers object.encapsulation.@Deprecated protected String getFileName(Map<String,String> headers)
getFileName(FileItemHeaders).Content-disposition
header.headers - A Map containing the HTTP request headers.encapsulation.public long getFileSizeMax()
getSizeMax().setFileSizeMax(long)@Deprecated protected final String getHeader(Map<String,String> headers, String name)
FileItemHeaders.getHeader(String).headers - A Map containing the HTTP request headers.name - The name of the header to return.public String getHeaderEncoding()
null, the request
encoding is used. If that is also not specified, or null,
the platform default encoding is used.public FileItemIterator getItemIterator(RequestContext ctx) throws FileUploadException, IOException
multipart/form-data stream.ctx - The context for the request to be parsed.FileItemStream
parsed from the request, in the order that they were
transmitted.FileUploadException - if there are problems reading/parsing
the request or storing files.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.protected FileItemHeaders getParsedHeaders(String headerPart)
Parses the header-part and returns as key/value
pairs.
If there are multiple headers of the same names, the name will map to a comma-separated list containing the values.
headerPart - The header-part of the current
encapsulation.Map containing the parsed HTTP request headers.public int getPartHeaderSizeMax()
public ProgressListener getProgressListener()
public long getSizeMax()
getFileSizeMax().setSizeMax(long)protected FileItemHeadersImpl newFileItemHeaders()
FileItemHeaders.@Deprecated protected Map<String,String> parseHeaders(String headerPart)
getParsedHeaders(String) Parses the header-part and returns as key/value
pairs.
If there are multiple headers of the same names, the name will map to a comma-separated list containing the values.
headerPart - The header-part of the current
encapsulation.Map containing the parsed HTTP request headers.public Map<String,List<FileItem>> parseParameterMap(RequestContext ctx) throws FileUploadException
multipart/form-data stream.ctx - The context for the request to be parsed.FileItem instances parsed from the request.FileUploadException - if there are problems reading/parsing
the request or storing files.@Deprecated public List<FileItem> parseRequest(javax.servlet.http.HttpServletRequest req) throws FileUploadException
ServletFileUpload.parseRequest(HttpServletRequest) instead.multipart/form-data stream.req - The servlet request to be parsed.FileItem instances parsed from the
request, in the order that they were transmitted.FileUploadException - if there are problems reading/parsing
the request or storing files.public List<FileItem> parseRequest(RequestContext ctx) throws FileUploadException
multipart/form-data stream.ctx - The context for the request to be parsed.FileItem instances parsed from the
request, in the order that they were transmitted.FileUploadException - if there are problems reading/parsing
the request or storing files.public void setFileCountMax(long fileCountMax)
fileCountMax - The new limit. -1 means no limit.public abstract void setFileItemFactory(FileItemFactory factory)
factory - The factory class for new file items.public void setFileSizeMax(long fileSizeMax)
getSizeMax().fileSizeMax - Maximum size of a single uploaded file.getFileSizeMax()public void setHeaderEncoding(String encoding)
null, the request
encoding is used. If that is also not specified, or null,
the platform default encoding is used.encoding - The encoding used to read part headers.public void setPartHeaderSizeMax(int partHeaderSizeMax)
partHeaderSizeMax - The maximum size of the headers in bytes.public void setProgressListener(ProgressListener listener)
listener - The progress listener, if any. Defaults to null.public void setSizeMax(long sizeMax)
setFileSizeMax(long).sizeMax - The maximum allowed size, in bytes. The default value of
-1 indicates, that there is no limit.getSizeMax()Copyright © 2002–2025 The Apache Software Foundation. All rights reserved.