Class and Description |
---|
org.apache.commons.fileupload.DefaultFileItem
Use
DiskFileItem instead. |
org.apache.commons.fileupload.DefaultFileItemFactory
Use
DiskFileItemFactory instead. |
org.apache.commons.fileupload.DiskFileUpload
Use
ServletFileUpload together with
DiskFileItemFactory instead. |
Exceptions and Description |
---|
org.apache.commons.fileupload.FileUploadBase.UnknownSizeException
As of commons-fileupload 1.2, the presence of a
content-length header is no longer required.
|
Field and Description |
---|
org.apache.commons.fileupload.FileUploadBase.MAX_HEADER_SIZE
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 . |
Constructor and Description |
---|
org.apache.commons.fileupload.DefaultFileItem(String, String, boolean, String, int, File)
Use
DiskFileItem instead. |
org.apache.commons.fileupload.DefaultFileItemFactory()
Use
DiskFileItemFactory instead. |
org.apache.commons.fileupload.DefaultFileItemFactory(int, File)
Use
DiskFileItemFactory instead. |
org.apache.commons.fileupload.DiskFileUpload()
Use
FileUpload instead. |
org.apache.commons.fileupload.DiskFileUpload(DefaultFileItemFactory)
Use
FileUpload instead. |
org.apache.commons.fileupload.FileUploadBase.SizeLimitExceededException()
Replaced by
#SizeLimitExceededException(String, long, long) |
org.apache.commons.fileupload.FileUploadBase.SizeLimitExceededException(String)
Replaced by
#SizeLimitExceededException(String, long, long) |
org.apache.commons.fileupload.MultipartStream() |
org.apache.commons.fileupload.MultipartStream(InputStream, byte[]) |
org.apache.commons.fileupload.MultipartStream(InputStream, byte[], int) |
Copyright © 2002-2013 The Apache Software Foundation. All Rights Reserved.