接口 MultipartRequest

    • 方法详细资料

      • getFileNames

        Iterator<StringgetFileNames()
        Return an 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
      • getFile

        MultipartFile getFile​(String name)
        Return the contents plus description of an uploaded file in this request, or null if it does not exist.
        参数:
        name - a String specifying the parameter name of the multipart file
        返回:
        the uploaded content in the form of a MultipartFile object
      • getFiles

        List<MultipartFilegetFiles​(String name)
        Return the contents plus description of uploaded files in this request, or an empty list if it does not exist.
        参数:
        name - a String specifying the parameter name of the multipart file
        返回:
        the uploaded content in the form of a MultipartFile list
        从以下版本开始:
        3.0
      • getMultipartContentType

        String getMultipartContentType​(String paramOrFileName)
        Determine the content type of the specified request part.
        参数:
        paramOrFileName - the name of the part
        返回:
        the associated content type, or null if not defined
        从以下版本开始:
        3.1