|
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
org.apache.struts.upload Class CommonsMultipartRequestHandler.CommonsFormFile
java.lang.Object | +--org.apache.struts.upload.CommonsMultipartRequestHandler.CommonsFormFile
- All Implemented Interfaces:
- FormFile, java.io.Serializable
- Enclosing class:
- CommonsMultipartRequestHandler
- static class CommonsMultipartRequestHandler.CommonsFormFile
- extends java.lang.Object
- implements FormFile, java.io.Serializable
This class implements the Struts FormFile interface by
wrapping the Commons FileUpload FileItem interface. This
implementation is read-only; any attempt to modify an instance
of this class will result in an UnsupportedOperationException.
- See Also:
- Serialized Form
| Field Summary | |
(package private) org.apache.commons.fileupload.FileItem |
fileItem
The FileItem instance wrapped by this object. |
| Constructor Summary | |
CommonsMultipartRequestHandler.CommonsFormFile(org.apache.commons.fileupload.FileItem fileItem)
Constructs an instance of this class which wraps the supplied file item. |
|
| Method Summary | |
void |
destroy()
Destroy all content for this form file. |
protected java.lang.String |
getBaseFileName(java.lang.String filePath)
Returns the base file name from the supplied file path. |
java.lang.String |
getContentType()
Returns the content type for this file. |
byte[] |
getFileData()
Returns the data for this file as a byte array. |
java.lang.String |
getFileName()
Returns the (client-side) file name for this file. |
int |
getFileSize()
Returns the size, in bytes, of this file. |
java.io.InputStream |
getInputStream()
Get an InputStream that represents this file. |
void |
setContentType(java.lang.String contentType)
Sets the content type for this file. |
void |
setFileName(java.lang.String fileName)
Sets the (client-side) file name for this file. |
void |
setFileSize(int filesize)
Sets the size, in bytes, for this file. |
java.lang.String |
toString()
Returns the (client-side) file name for this file. |
| Methods inherited from class java.lang.Object |
|
| Field Detail |
fileItem
org.apache.commons.fileupload.FileItem fileItem
- The
FileIteminstance wrapped by this object.
| Constructor Detail |
CommonsMultipartRequestHandler.CommonsFormFile
public CommonsMultipartRequestHandler.CommonsFormFile(org.apache.commons.fileupload.FileItem fileItem)
- Constructs an instance of this class which wraps the supplied file item.
- Parameters:
fileItem- The Commons file item to be wrapped.
| Method Detail |
getContentType
public java.lang.String getContentType()
- Returns the content type for this file.
- Specified by:
getContentTypein interfaceFormFile
- Returns:
- A String representing content type.
setContentType
public void setContentType(java.lang.String contentType)
- Sets the content type for this file.
NOTE: This method is not supported in this implementation.
- Specified by:
setContentTypein interfaceFormFile
- Parameters:
contentType- A string representing the content type.
getFileSize
public int getFileSize()
- Returns the size, in bytes, of this file.
- Specified by:
getFileSizein interfaceFormFile
- Returns:
- The size of the file, in bytes.
setFileSize
public void setFileSize(int filesize)
- Sets the size, in bytes, for this file.
NOTE: This method is not supported in this implementation.
- Specified by:
setFileSizein interfaceFormFile
- Parameters:
filesize- The size of the file, in bytes.
getFileName
public java.lang.String getFileName()
- Returns the (client-side) file name for this file.
- Specified by:
getFileNamein interfaceFormFile
- Returns:
- The client-size file name.
setFileName
public void setFileName(java.lang.String fileName)
- Sets the (client-side) file name for this file.
NOTE: This method is not supported in this implementation.
- Specified by:
setFileNamein interfaceFormFile
- Parameters:
fileName- The client-side name for the file.
getFileData
public byte[] getFileData()
throws java.io.FileNotFoundException,
java.io.IOException
- Returns the data for this file as a byte array. Note that this may
result in excessive memory usage for large uploads. The use of the
getInputStreammethod is encouraged as an alternative. - Specified by:
getFileDatain interfaceFormFile
- Returns:
- An array of bytes representing the data contained in this form file.
- Throws:
java.io.FileNotFoundException- If some sort of file representation cannot be found for the FormFilejava.io.IOException- If there is some sort of IOException
getInputStream
public java.io.InputStream getInputStream()
throws java.io.FileNotFoundException,
java.io.IOException
- Get an InputStream that represents this file. This is the preferred method of getting file data.
- Specified by:
getInputStreamin interfaceFormFile
- Throws:
java.io.FileNotFoundException- If some sort of file representation cannot be found for the FormFilejava.io.IOException- If there is some sort of IOException
destroy
public void destroy()
- Destroy all content for this form file. Implementations should remove any temporary files or any temporary file data stored somewhere
getBaseFileName
protected java.lang.String getBaseFileName(java.lang.String filePath)
- Returns the base file name from the supplied file path. On the surface,
this would appear to be a trivial task. Apparently, however, some Linux
JDKs do not implement
File.getName()correctly for Windows paths, so we attempt to take care of that here. - Parameters:
filePath- The full path to the file.- Returns:
- The base file name, from the end of the path.
toString
public java.lang.String toString()
- Returns the (client-side) file name for this file.
- Overrides:
toStringin classjava.lang.Object
- Returns:
- The client-size file name.
|
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
Copyright © 2000-2005 - The Apache Software Foundation