public static final class Http.FileUpload extends java.lang.Object
Constructor and description |
---|
FileUpload(jakarta.servlet.http.Part part) |
Type Params | Return Type | Name and description |
---|---|---|
|
public void |
copyTo(java.nio.file.Path destination) Copy the uploaded file to a destination of your choosing. |
|
public void |
delete() Delete the uploaded file from disk |
|
public java.lang.String |
fileName()
|
|
public java.lang.String |
getChecksum()
|
|
public java.lang.String |
getContentType()
|
|
public java.io.InputStream |
getInputStream() Get access to the raw InputStream |
|
public java.lang.String |
getName()
|
|
public java.nio.file.Path |
getPath()
|
|
public long |
getSize()
|
|
public java.lang.String |
getSubmittedFileName()
|
|
public java.lang.String |
getTemporaryFileName()
|
Methods inherited from class | Name |
---|---|
class java.lang.Object |
java.lang.Object#wait(long, int), java.lang.Object#wait(), java.lang.Object#wait(long), java.lang.Object#equals(java.lang.Object), java.lang.Object#toString(), java.lang.Object#hashCode(), java.lang.Object#getClass(), java.lang.Object#notify(), java.lang.Object#notifyAll() |
Copy the uploaded file to a destination of your choosing. If there is an issue copying the file, the method will throw an exception.
destination
- The target destination. You can leverage the fileName() and getSubmittedFileName() methods to build a file name.Delete the uploaded file from disk
Get access to the raw InputStream