Class Filedownload
- java.lang.Object
-
- org.zkoss.zul.Filedownload
-
- org.zkoss.zkmax.zul.Filedownload
-
public class Filedownload extends Filedownload
More filedownload utilities, such as resumable filedownload.Available in ZK EE
Resumable Download
By resumable we mean the user can bookmark the URL and download it later (and even resume the download in the middle). On the other hand, the download URL of
Filedownload
becomes obsolete as soon as the desktop (or session) is gone.Since the resumable download can be used in any session or without any session, or with a different client (such flashget), you might want to limit the download under certain condition.
First, there are two library properties that can control the number of allowed resumable downloads.
- org.zkoss.zk.download.resumable.lifetime
- Specifies when the download URL will be expired (unit: second).
Default: 14400 (i.e., 4 hours). - org.zkoss.zk.download.resumable.maxsize
- Specifies the maximal allowed number of resumable downloads.
Default: 4096.
Second, you can have more control by implementing
FiledownloadListener
and specify it as a library property called org.zkoss.zkmax.zul.FiledownloadListener.class. For example, you can specify the following in zk.xml:<library-property> <name>org.zkoss.zkmax.zul.FiledownloadListener.class</name> <value>com.foo.MyDownloadListener</value> </library-property>
- Since:
- 3.5.0
- Author:
- tomyeh
- See Also:
FiledownloadListener
,Library.setProperty(java.lang.String, java.lang.String)
-
-
Constructor Summary
Constructors Constructor Description Filedownload()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static void
saveResumable(java.io.File file, java.lang.String contentType, java.lang.String data)
Open a download dialog to save the specified file at the client.static void
saveResumable(java.lang.String path, java.lang.String contentType, java.lang.String data)
Open a download dialog to save the resource of the specified path at the client.static void
saveResumable(java.net.URL url, java.lang.String contentType, java.lang.String data)
Open a download dialog to save the resource of the specified URL at the client.
-
-
-
Method Detail
-
saveResumable
public static void saveResumable(java.io.File file, java.lang.String contentType, java.lang.String data)
Open a download dialog to save the specified file at the client. UnlikeFiledownload.save(File,String)
, the download URL is resumable.- Parameters:
file
- the file to download to the clientcontentType
- the content type, e.g., application/pdf. Unlike other save methods, it is optional. If null, the file name's extension is used to determine the content type.data
- the application-specific data to be passed toFiledownloadListener.onDownload(org.zkoss.util.media.Media, java.lang.Object, java.lang.String)
.
-
saveResumable
public static void saveResumable(java.net.URL url, java.lang.String contentType, java.lang.String data)
Open a download dialog to save the resource of the specified URL at the client. UnlikeFiledownload.save(File,String)
, the download URL is resumable.- Parameters:
url
- the URL to get the resourcecontentType
- the content type, e.g., application/pdf. Unlike other save methods, it is optional. If null, the file name's extension is used to determine the content type.data
- the application-specific data to be passed toFiledownloadListener.onDownload(org.zkoss.util.media.Media, java.lang.Object, java.lang.String)
.
-
saveResumable
public static void saveResumable(java.lang.String path, java.lang.String contentType, java.lang.String data)
Open a download dialog to save the resource of the specified path at the client. UnlikeFiledownload.save(File,String)
, the download URL is resumable.- Parameters:
path
- the path of the resource. It must be retrievable by use ofWebApp.getResource(java.lang.String)
.contentType
- the content type, e.g., application/pdf. Unlike other save methods, it is optional. If null, the file name's extension is used to determine the content type.data
- the application-specific data to be passed toFiledownloadListener.onDownload(org.zkoss.util.media.Media, java.lang.Object, java.lang.String)
.
-
-