public class JakartaMultiPartRequest extends Object implements MultiPartRequest
Modifier and Type | Field and Description |
---|---|
protected List<String> |
errors |
protected Map<String,List<org.apache.commons.fileupload.FileItem>> |
files |
protected long |
maxSize |
protected Map<String,List<String>> |
params |
Constructor and Description |
---|
JakartaMultiPartRequest() |
Modifier and Type | Method and Description |
---|---|
protected String |
buildErrorMessage(Throwable e,
Object[] args) |
void |
cleanUp()
Cleans up all uploaded file, should be called at the end of request
|
String[] |
getContentType(String fieldName)
Returns the content type(s) of the file(s) associated with the specified field name
(as supplied by the client browser), or null if no files are associated with the
given field name.
|
List<String> |
getErrors()
Returns a list of error messages that may have occurred while processing the request.
|
File[] |
getFile(String fieldName)
Returns a
File object for the filename specified or null if no files
are associated with the given field name. |
String[] |
getFileNames(String fieldName)
Returns a String[] of file names for files associated with the specified input field name
|
Enumeration<String> |
getFileParameterNames()
Returns an enumeration of the parameter names for uploaded files
|
String[] |
getFilesystemName(String fieldName)
Returns the file system name(s) of files associated with the given field name or
null if no files are associated with the given field name.
|
String |
getParameter(String name)
Returns the specified request parameter.
|
Enumeration<String> |
getParameterNames()
Returns an enumeration of String parameter names.
|
String[] |
getParameterValues(String name)
Returns a list of all parameter values associated with a parameter name.
|
void |
parse(javax.servlet.http.HttpServletRequest request,
String saveDir)
Creates a new request wrapper to handle multi-part data using methods adapted from Jason Pell's
multipart classes (see class description).
|
protected void |
setLocale(javax.servlet.http.HttpServletRequest request) |
void |
setLocaleProvider(LocaleProvider provider) |
void |
setMaxSize(String maxSize) |
public void setMaxSize(String maxSize)
public void setLocaleProvider(LocaleProvider provider)
public void parse(javax.servlet.http.HttpServletRequest request, String saveDir) throws IOException
parse
in interface MultiPartRequest
saveDir
- the directory to save off the filerequest
- the request containing the multipartIOException
- is thrown if encoding fails.protected void setLocale(javax.servlet.http.HttpServletRequest request)
public Enumeration<String> getFileParameterNames()
MultiPartRequest
getFileParameterNames
in interface MultiPartRequest
public String[] getContentType(String fieldName)
MultiPartRequest
getContentType
in interface MultiPartRequest
fieldName
- input field namepublic File[] getFile(String fieldName)
MultiPartRequest
File
object for the filename specified or null if no files
are associated with the given field name.getFile
in interface MultiPartRequest
fieldName
- input field namepublic String[] getFileNames(String fieldName)
MultiPartRequest
getFileNames
in interface MultiPartRequest
fieldName
- input field namepublic String[] getFilesystemName(String fieldName)
MultiPartRequest
getFilesystemName
in interface MultiPartRequest
fieldName
- input field namepublic String getParameter(String name)
MultiPartRequest
getParameter
in interface MultiPartRequest
name
- the name of the parameter to getpublic Enumeration<String> getParameterNames()
MultiPartRequest
getParameterNames
in interface MultiPartRequest
public String[] getParameterValues(String name)
MultiPartRequest
getParameterValues
in interface MultiPartRequest
name
- the name of the parameter.public List<String> getErrors()
MultiPartRequest
MultiPartRequestWrapper
's errors field.getErrors
in interface MultiPartRequest
public void cleanUp()
MultiPartRequest
cleanUp
in interface MultiPartRequest
Copyright © 2000-2013 Apache Software Foundation. All Rights Reserved.