public interface MultipartRequest
MultipartHttpServletRequest
.Modifier and Type | Method and Description |
---|---|
MultipartFile |
getFile(java.lang.String name)
Return the contents plus description of an uploaded file in this request,
or
null if it does not exist. |
java.util.Map<java.lang.String,MultipartFile> |
getFileMap()
Return a
Map of the multipart files contained in this request. |
java.util.Iterator<java.lang.String> |
getFileNames()
Return an
Iterator of String objects containing the
parameter names of the multipart files contained in this request. |
java.util.List<MultipartFile> |
getFiles(java.lang.String name)
Return the contents plus description of uploaded files in this request,
or an empty list if it does not exist.
|
MultiValueMap<java.lang.String,MultipartFile> |
getMultiFileMap()
Return a
MultiValueMap of the multipart files contained in this request. |
java.lang.String |
getMultipartContentType(java.lang.String paramOrFileName)
Determine the content type of the specified request part.
|
java.util.Iterator<java.lang.String> getFileNames()
Iterator
of String objects containing the
parameter names of the multipart files contained in this request. These
are the field names of the form (like with normal parameters), not the
original file names.@Nullable MultipartFile getFile(java.lang.String name)
null
if it does not exist.name
- a String specifying the parameter name of the multipart fileMultipartFile
objectjava.util.List<MultipartFile> getFiles(java.lang.String name)
name
- a String specifying the parameter name of the multipart fileMultipartFile
listjava.util.Map<java.lang.String,MultipartFile> getFileMap()
Map
of the multipart files contained in this request.MultipartFile
objects as valuesMultiValueMap<java.lang.String,MultipartFile> getMultiFileMap()
MultiValueMap
of the multipart files contained in this request.MultipartFile
objects as values@Nullable java.lang.String getMultipartContentType(java.lang.String paramOrFileName)
paramOrFileName
- the name of the partnull
if not defined