类 MockMultipartFile

    • 构造器详细资料

      • MockMultipartFile

        public MockMultipartFile​(String name,
                                 byte[] content)
        Create a new MockMultipartFile with the given content.
        参数:
        name - the name of the file
        content - the content of the file
      • MockMultipartFile

        public MockMultipartFile​(String name,
                                 InputStream contentStream)
                          throws IOException
        Create a new MockMultipartFile with the given content.
        参数:
        name - the name of the file
        contentStream - the content of the file as stream
        抛出:
        IOException - if reading from the stream failed
      • MockMultipartFile

        public MockMultipartFile​(String name,
                                 String originalFilename,
                                 String contentType,
                                 byte[] content)
        Create a new MockMultipartFile with the given content.
        参数:
        name - the name of the file
        originalFilename - the original filename (as on the client's machine)
        contentType - the content type (if known)
        content - the content of the file
      • MockMultipartFile

        public MockMultipartFile​(String name,
                                 String originalFilename,
                                 String contentType,
                                 InputStream contentStream)
                          throws IOException
        Create a new MockMultipartFile with the given content.
        参数:
        name - the name of the file
        originalFilename - the original filename (as on the client's machine)
        contentType - the content type (if known)
        contentStream - the content of the file as stream
        抛出:
        IOException - if reading from the stream failed
    • 方法详细资料

      • isEmpty

        public boolean isEmpty()
        从接口复制的说明: MultipartFile
        Return whether the uploaded file is empty, that is, either no file has been chosen in the multipart form or the chosen file has no content.
        指定者:
        isEmpty 在接口中 MultipartFile
      • getBytes

        public byte[] getBytes()
                        throws IOException
        从接口复制的说明: MultipartFile
        Return the contents of the file as an array of bytes.
        指定者:
        getBytes 在接口中 MultipartFile
        返回:
        the contents of the file as bytes, or an empty byte array if empty
        抛出:
        IOException - in case of access errors (if the temporary store fails)
      • transferTo

        public void transferTo​(File dest)
                        throws IOException,
                               IllegalStateException
        从接口复制的说明: MultipartFile
        Transfer the received file to the given destination file.

        This may either move the file in the filesystem, copy the file in the filesystem, or save memory-held contents to the destination file. If the destination file already exists, it will be deleted first.

        If the target file has been moved in the filesystem, this operation cannot be invoked again afterwards. Therefore, call this method just once in order to work with any storage mechanism.

        NOTE: Depending on the underlying provider, temporary storage may be container-dependent, including the base directory for relative destinations specified here (e.g. with Servlet 3.0 multipart handling). For absolute destinations, the target file may get renamed/moved from its temporary location or newly copied, even if a temporary copy already exists.

        指定者:
        transferTo 在接口中 MultipartFile
        参数:
        dest - the destination file (typically absolute)
        抛出:
        IOException - in case of reading or writing errors
        IllegalStateException - if the file has already been moved in the filesystem and is not available anymore for another transfer
        另请参阅:
        FileItem.write(File), Part.write(String)