public class PlayerSelectFileEvent extends PlayerEvent
GuiFileBrowser
element.
Note that the biggest supported file size is 231-1 bytes. In general it's
recommendable to not upload too large files.Constructor and Description |
---|
PlayerSelectFileEvent(Player player,
GuiFileBrowser fileBrowser,
java.lang.String filename,
java.lang.String path,
int bytes,
java.lang.String md5) |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getChecksum()
Gets the MD5 checksum of the file.
|
GuiFileBrowser |
getFileBrowserElement()
Gets the file browser element.
|
java.lang.String |
getFilename()
Gets the name of the file (with extension), e.g.
|
int |
getFilesize()
Gets the size of the file (in bytes).
|
java.lang.String |
getPath()
Gets the (client side) path to the file, e.g.
|
void |
requestFileUpload(java.lang.String targetDirectory,
Callback<java.io.File> callback)
Requests the client to upload the file to the server.
|
getPlayer
public PlayerSelectFileEvent(Player player, GuiFileBrowser fileBrowser, java.lang.String filename, java.lang.String path, int bytes, java.lang.String md5)
public GuiFileBrowser getFileBrowserElement()
public java.lang.String getFilename()
public java.lang.String getPath()
public int getFilesize()
public java.lang.String getChecksum()
public void requestFileUpload(java.lang.String targetDirectory, Callback<java.io.File> callback)
Callback
will be called.targetDirectory
- the target directory (where the file will be uploaded to).callback
- the Callback
object. It will be called once the file
upload completes (or fails). The resulting File
object will be passed
as argument (or null if the upload failed).