|
|||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||
java.lang.Objectorg.springframework.web.multipart.commons.CommonsMultipartFile
MultipartFile implementation for Jakarta Commons FileUpload.
CommonsMultipartResolver| Field Summary | |
protected org.apache.commons.logging.Log |
logger
|
| Constructor Summary | |
protected |
CommonsMultipartFile(org.apache.commons.fileupload.FileItem fileItem)
Create an instance wrapping the given FileItem. |
| Method Summary | |
byte[] |
getBytes()
Return the contents of the file as an array of bytes. |
java.lang.String |
getContentType()
Return the content type of the file. |
org.apache.commons.fileupload.FileItem |
getFileItem()
Return the underlying org.apache.commons.fileupload.FileItem instance. |
java.io.InputStream |
getInputStream()
Return an InputStream to read the contents of the file from. |
java.lang.String |
getName()
Return the name of the parameter in the multipart form. |
java.lang.String |
getOriginalFilename()
Return the original filename in the client's filesystem. |
long |
getSize()
Return the size of the file in bytes. |
protected java.lang.String |
getStorageDescription()
|
boolean |
isEmpty()
Return whether the uploaded file is empty in the sense that no file has been chosen in the multipart form. |
void |
transferTo(java.io.File dest)
Transfer the received file to the given destination file. |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
protected final org.apache.commons.logging.Log logger
| Constructor Detail |
protected CommonsMultipartFile(org.apache.commons.fileupload.FileItem fileItem)
fileItem - the FileItem to wrap| Method Detail |
public org.apache.commons.fileupload.FileItem getFileItem()
public java.lang.String getName()
MultipartFile
getName in interface MultipartFilepublic boolean isEmpty()
MultipartFile
isEmpty in interface MultipartFilepublic java.lang.String getOriginalFilename()
MultipartFile
getOriginalFilename in interface MultipartFilepublic java.lang.String getContentType()
MultipartFile
getContentType in interface MultipartFilepublic long getSize()
MultipartFile
getSize in interface MultipartFilepublic byte[] getBytes()
MultipartFile
getBytes in interface MultipartFile
public java.io.InputStream getInputStream()
throws java.io.IOException
MultipartFile
getInputStream in interface MultipartFilejava.io.IOException - in case of access errors
(if the temporary store fails)
public void transferTo(java.io.File dest)
throws java.io.IOException,
java.lang.IllegalStateException
MultipartFileThis 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.
transferTo in interface MultipartFiledest - the destination file
java.lang.IllegalStateException - if the file has already been moved
in the filesystem as is not available anymore for another transfer
java.io.IOException - in case of reading or writing errorsprotected java.lang.String getStorageDescription()
|
|||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||