Provides additional methods for dealing with multipart content within a
servlet request, allowing to access uploaded files.
Implementations also need to override the standard
javax.servlet.ServletRequest methods for parameter access, making
multipart parameters available.
Return the contents plus description of an uploaded file in this request,
or null if it does not exist.
Parameters: name - a String specifying the parameter name of the multipart file the uploaded content in the form of a org.springframework.web.multipart.MultipartFile object
Return an
java.util.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.
the names of the files