|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface MultipartFile
Interface which represents an uploaded file received in a multipart request.
The file contents are either stored in memory or temporarily on disk. In either case, the user is responsible for copying file contents to a session-level or persistent store if desired. The temporary storages will be cleared at the end of request processing.
MultipartHttpServletRequest
,
MultipartResolver
Method Summary | |
---|---|
byte[] |
getBytes()
Return the contents of the file as an array of bytes. |
String |
getContentType()
Return the content type of the file. |
InputStream |
getInputStream()
Return an InputStream to read the contents of the file from. |
String |
getName()
Return the name of the parameter in the multipart form. |
String |
getOriginalFilename()
Return the original filename in the client's filesystem. |
long |
getSize()
Return the size of the file in bytes. |
boolean |
isEmpty()
Return whether the uploaded file is empty in the sense that no file has been chosen in the multipart form. |
void |
transferTo(File dest)
Transfer the received file to the given destination file. |
Method Detail |
---|
String getName()
boolean isEmpty()
String getOriginalFilename()
null
if emptyString getContentType()
null
if empty or not definedlong getSize()
byte[] getBytes() throws IOException
IOException
- in case of access errors
(if the temporary store fails)InputStream getInputStream() throws IOException
IOException
- in case of access errors
(if the temporary store fails)void transferTo(File dest) throws IOException, IllegalStateException
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 file has been moved in the filesystem, this operation cannot be invoked again. Therefore, call this method just once to be able to work with any storage mechanism.
dest
- the destination file
IOException
- in case of reading or writing errors
IllegalStateException
- if the file has already been moved
in the filesystem as is not available anymore for another transfer
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |