public interface UploadedFile
An uploaded file.
-
Method Summary
Modifier and Type Method Description InputStreamcontent()Return the file content as InputStream.StringcontentType()Return the content type for this part.voiddelete()StringfileName()Return the submitted file name.Stringname()Return the name of the part.longsize()Return the size.
-
Method Details
-
name
String name()Return the name of the part. -
fileName
String fileName()Return the submitted file name. -
content
InputStream content()Return the file content as InputStream. -
contentType
String contentType()Return the content type for this part. -
size
long size()Return the size. -
delete
void delete()
-