Java org.apache.commons.fileupload FileUpload fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.fileupload FileUpload fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.fileupload FileUpload.

The text is from its open source code.

Subclass

org.apache.commons.fileupload.FileUpload has subclasses.
Click this link to see all its subclasses.

Implementation

org.apache.commons.fileupload.FileUpload has the following implementations.
Click this link to see all its implementation.

Constructor

FileUpload(FileItemFactory fileItemFactory)
Constructs an instance of this class which uses the supplied factory to create FileItem instances.
FileUpload()
Constructs an instance of this class which uses the default factory to create FileItem instances.

Method

FileItemFactorygetFileItemFactory()
Returns the factory class used when creating file items.
StringgetHeaderEncoding()
Retrieves the character encoding used when reading the headers of an individual part.
longgetSizeMax()
Returns the maximum allowed upload size.
booleanisMultipartContent(HttpServletRequest req)
Utility method that determines whether the request contains multipart content.
ListparseRequest(HttpServletRequest req)
Processes an RFC 1867 compliant multipart/form-data stream.
voidsetFileItemFactory(FileItemFactory factory)
Sets the factory class to use when creating file items.
voidsetHeaderEncoding(String encoding)
Specifies the character encoding to be used when reading the headers of individual parts.
voidsetSizeMax(long sizeMax)
Sets the maximum allowed upload size.