Serialized Form
-
Package org.apache.commons.fileupload
-
Class org.apache.commons.fileupload.DefaultFileItem extends DiskFileItem implements Serializable
-
Class org.apache.commons.fileupload.FileUploadBase.InvalidContentTypeException extends FileUploadException implements Serializable
-
Class org.apache.commons.fileupload.FileUploadBase.SizeLimitExceededException extends FileUploadException implements Serializable
-
Serialized Fields
-
actual
long actual
The actual size of the request. -
permitted
long permitted
The maximum permitted size of the request.
-
-
-
Class org.apache.commons.fileupload.FileUploadBase.UnknownSizeException extends FileUploadException implements Serializable
-
Class org.apache.commons.fileupload.FileUploadException extends java.lang.Exception implements Serializable
-
Serialized Fields
-
cause
java.lang.Throwable cause
The exceptions cause. We overwrite the cause of the super class, which isn't available in Java 1.3.
-
-
-
Class org.apache.commons.fileupload.MultipartStream.IllegalBoundaryException extends java.io.IOException implements Serializable
-
Class org.apache.commons.fileupload.MultipartStream.MalformedStreamException extends java.io.IOException implements Serializable
-
-
Package org.apache.commons.fileupload.disk
-
Class org.apache.commons.fileupload.disk.DiskFileItem extends java.lang.Object implements Serializable
-
Serialization Methods
-
readObject
private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.ClassNotFoundExceptionReads the state of this object during deserialization.- Throws:
java.io.IOException- if an error occurs.java.lang.ClassNotFoundException- if class cannot be found.
-
writeObject
private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExceptionWrites the state of this object during serialization.- Throws:
java.io.IOException- if an error occurs.
-
-
Serialized Fields
-
cachedContent
byte[] cachedContent
Cached contents of the file. -
contentType
java.lang.String contentType
The content type passed by the browser, ornullif not defined. -
dfosFile
java.io.File dfosFile
File to allow for serialization of the content of this item. -
fieldName
java.lang.String fieldName
The name of the form field as provided by the browser. -
fileName
java.lang.String fileName
The original filename in the user's filesystem. -
isFormField
boolean isFormField
Whether or not this item is a simple form field. -
repository
java.io.File repository
The directory in which uploaded files will be stored, if stored on disk. -
size
long size
The size of the item, in bytes. This is used to cache the size when a file item is moved from its original location. -
sizeThreshold
int sizeThreshold
The threshold above which uploads will be stored on disk.
-
-
-