| 
 | ||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
This interface represents a file that has been uploaded by a client. It is the only interface or class in upload package which is typically referenced directly by a Struts application.
| Method Summary | |
|  void | destroy()Destroys all content for the uploaded file, including any underlying data files. | 
|  java.lang.String | getContentType()Returns the content type for this file. | 
|  byte[] | getFileData()Returns the data for the entire file as byte array. | 
|  java.lang.String | getFileName()Returns the file name of this file. | 
|  int | getFileSize()Returns the size of this file. | 
|  java.io.InputStream | getInputStream()Returns an input stream for this file. | 
|  void | setContentType(java.lang.String contentType)Sets the content type for this file. | 
|  void | setFileName(java.lang.String fileName)Sets the file name of this file. | 
|  void | setFileSize(int fileSize)Sets the file size. | 
| Method Detail | 
public java.lang.String getContentType()
public void setContentType(java.lang.String contentType)
contentType - The content type for the file.public int getFileSize()
public void setFileSize(int fileSize)
fileSize - The size of the file, in bytes,public java.lang.String getFileName()
public void setFileName(java.lang.String fileName)
fileName - The base file name.
public byte[] getFileData()
                   throws java.io.FileNotFoundException,
                          java.io.IOException
getInputStream.
java.io.FileNotFoundException - if the uploaded file is not found.
java.io.IOException - if an error occurred while reading the
                                  file.
public java.io.InputStream getInputStream()
                                   throws java.io.FileNotFoundException,
                                          java.io.IOException
java.io.FileNotFoundException - if the uploaded file is not found.
java.io.IOException - if an error occurred while reading the
                                  file.public void destroy()
| 
 | ||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||