Java org.springframework.web.multipart MultipartRequest fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.web.multipart MultipartRequest fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.web.multipart MultipartRequest.

The text is from its open source code.

Implementation

org.springframework.web.multipart.MultipartRequest has the following implementations.
Click this link to see all its implementation.

Method

MultipartFilegetFile(String name)
Return the contents plus description of an uploaded file in this request, or null if it does not exist.
MapgetFileMap()
Return a java.util.Map of the multipart files contained in this request.
IteratorgetFileNames()
Return an java.util.Iterator of String objects containing the parameter names of the multipart files contained in this request.
ListgetFiles(String name)
Return the contents plus description of uploaded files in this request, or an empty list if it does not exist.
MultiValueMapgetMultiFileMap()
Return a MultiValueMap of the multipart files contained in this request.