| Interface | Description |
|---|---|
| FileItem |
This class represents a file or form item that was received within a
multipart/form-data POST request. |
| FileItemFactory |
A factory interface for creating
FileItem instances. |
| FileItemHeaders |
This class provides support for accessing the headers for a file or form
item that was received within a
multipart/form-data POST
request. |
| FileItemHeadersSupport |
Interface that will indicate that
FileItem or FileItemStream
implementations will accept the headers read for the item. |
| FileItemIterator |
An iterator, as returned by
FileUploadBase.getItemIterator(RequestContext). |
| FileItemStream |
This interface provides access to a file or form item that was
received within a
multipart/form-data POST request. |
| ProgressListener |
The
ProgressListener may be used to display a progress bar
or do stuff like that. |
| RequestContext |
Abstracts access to the request information needed for file uploads.
|
| UploadContext |
Enhanced access to the request information needed for file uploads,
which fixes the Content Length data access in
RequestContext. |
| Class | Description |
|---|---|
| DefaultFileItem | Deprecated
1.1 Use
DiskFileItem instead. |
| DefaultFileItemFactory | Deprecated
1.1 Use
DiskFileItemFactory instead. |
| DiskFileUpload | Deprecated
1.1 Use
ServletFileUpload together with
DiskFileItemFactory instead. |
| FileUpload |
High level API for processing file uploads.
|
| FileUploadBase |
High level API for processing file uploads.
|
| MultipartStream |
Low level API for processing file uploads.
|
| MultipartStream.ProgressNotifier |
Internal class, which is used to invoke the
ProgressListener. |
| ParameterParser |
A simple parser intended to parse sequences of name/value pairs.
|
| Exception | Description |
|---|---|
| FileItemStream.ItemSkippedException |
This exception is thrown, if an attempt is made to read
data from the
InputStream, which has been returned
by FileItemStream.openStream(), after
Iterator.hasNext() has been invoked on the
iterator, which created the FileItemStream. |
| FileUploadBase.FileSizeLimitExceededException |
Thrown to indicate that A files size exceeds the configured maximum.
|
| FileUploadBase.FileUploadIOException |
This exception is thrown for hiding an inner
FileUploadException in an IOException. |
| FileUploadBase.InvalidContentTypeException |
Thrown to indicate that the request is not a multipart request.
|
| FileUploadBase.IOFileUploadException |
Thrown to indicate an IOException.
|
| FileUploadBase.SizeException |
This exception is thrown, if a requests permitted size
is exceeded.
|
| FileUploadBase.SizeLimitExceededException |
Thrown to indicate that the request size exceeds the configured maximum.
|
| FileUploadBase.UnknownSizeException | Deprecated
1.2 As of commons-fileupload 1.2, the presence of a
content-length header is no longer required.
|
| FileUploadException |
Exception for errors encountered while processing the request.
|
| InvalidFileNameException |
This exception is thrown in case of an invalid file name.
|
| MultipartStream.IllegalBoundaryException |
Thrown upon attempt of setting an invalid boundary token.
|
| MultipartStream.MalformedStreamException |
Thrown to indicate that the input stream fails to follow the
required syntax.
|
Copyright © 2002–2019 Marc Magon. All rights reserved.