|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.apache.commons.fileupload.disk.DiskFileItemFactory org.apache.commons.fileupload.DefaultFileItemFactory
DiskFileItemFactory
instead.
public class DefaultFileItemFactory
The default FileItemFactory
implementation. This implementation creates
FileItem
instances which keep their
content either in memory, for smaller items, or in a temporary file on disk,
for larger items. The size threshold, above which content will be stored on
disk, is configurable, as is the directory in which temporary files will be
created.
If not otherwise configured, the default configuration values are as follows:
System.getProperty("java.io.tmpdir")
.
Field Summary |
---|
Fields inherited from class org.apache.commons.fileupload.disk.DiskFileItemFactory |
---|
DEFAULT_SIZE_THRESHOLD |
Constructor Summary | |
---|---|
DefaultFileItemFactory()
Deprecated. Use DiskFileItemFactory instead. |
|
DefaultFileItemFactory(int sizeThreshold,
File repository)
Deprecated. Use DiskFileItemFactory instead. |
Method Summary | |
---|---|
FileItem |
createItem(String fieldName,
String contentType,
boolean isFormField,
String fileName)
Deprecated. Use DiskFileItemFactory instead. |
Methods inherited from class org.apache.commons.fileupload.disk.DiskFileItemFactory |
---|
getFileCleaningTracker, getRepository, getSizeThreshold, setFileCleaningTracker, setRepository, setSizeThreshold |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public DefaultFileItemFactory()
DiskFileItemFactory
instead.
public DefaultFileItemFactory(int sizeThreshold, File repository)
DiskFileItemFactory
instead.
sizeThreshold
- The threshold, in bytes, below which items will be
retained in memory and above which they will be
stored as a file.repository
- The data repository, which is the directory in
which files will be created, should the item size
exceed the threshold.Method Detail |
---|
public FileItem createItem(String fieldName, String contentType, boolean isFormField, String fileName)
DiskFileItemFactory
instead.
DefaultFileItem
instance from the supplied parameters and the local factory
configuration.
createItem
in interface FileItemFactory
createItem
in class DiskFileItemFactory
fieldName
- The name of the form field.contentType
- The content type of the form field.isFormField
- true
if this is a plain form field;
false
otherwise.fileName
- The name of the uploaded file, if any, as supplied
by the browser or other client.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |