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

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

Introduction

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

The text is from its open source code.

Subclass

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

Constructor

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

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.
FileItemIteratorgetItemIterator(HttpServletRequest request)
Processes an RFC 1867 compliant multipart/form-data stream.
longgetSizeMax()
Returns the maximum allowed upload size.
booleanisMultipartContent(HttpServletRequest request)
Utility method that determines whether the request contains multipart content.
ListparseRequest(HttpServletRequest request)
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.