Package dk.gtz.graphedit.util
Class Download
java.lang.Object
dk.gtz.graphedit.util.Download
- All Implemented Interfaces:
Runnable
Helper class for downloading files and getting the progress of the download.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic enum
The state that the download can be in. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
cancel()
Cancel the download.void
download()
Start the download.Get the downloaded file path.static String
getFileName
(URL url) Get the file name from a URL.float
Get the current percentage [0.0 - 100.0] of the download.int
getSize()
Get the size of the file being downloaded.Get the current state of the download.getUrl()
Get the URL that is being downloaded from.void
pause()
Pause the download.void
resume()
Resume the download if it was paused.void
run()
void
setOnStateChanged
(Runnable onStateChange) Set the callback that will be called when the state of the download changes.
-
Constructor Details
-
Download
Create a new download instance.- Parameters:
url
- The URL to download from.
-
-
Method Details
-
setOnStateChanged
Set the callback that will be called when the state of the download changes. This includes when some progress has been made.- Parameters:
onStateChange
- The callback to call.
-
getUrl
Get the URL that is being downloaded from.- Returns:
- The URL.
-
getSize
public int getSize()Get the size of the file being downloaded.- Returns:
- The size in bytes.
-
getProgress
public float getProgress()Get the current percentage [0.0 - 100.0] of the download.- Returns:
- The percentage of completion.
-
getStatus
Get the current state of the download.- Returns:
- The state of the download.
-
pause
public void pause()Pause the download. Callresume()
to resume. -
resume
public void resume()Resume the download if it was paused. -
cancel
public void cancel()Cancel the download. Discard the this instance and start again. -
download
public void download()Start the download. -
getFileName
Get the file name from a URL.- Parameters:
url
- The URL to get the file name from.- Returns:
- The file name.
-
downloadedFile
Get the downloaded file path.- Returns:
- The downloaded file path.
-
run
public void run()
-