Package org.zkoss.zul
Class Filedownload
- java.lang.Object
-
- org.zkoss.zul.Filedownload
-
public class Filedownload extends java.lang.ObjectFile download utilities.- Author:
- tomyeh
- See Also:
Fileupload
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classFiledownload.DownloadItemHelper class for specifying media and optional custom filename for multiple file downloads.
-
Constructor Summary
Constructors Constructor Description Filedownload()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static voidsave(byte[] content, java.lang.String contentType, java.lang.String flnm)Open a download dialog to save the specified content at the client with the suggested file name.static voidsave(java.io.File file, java.lang.String contentType)Open a download dialog to save the specified file at the client.static voidsave(java.io.InputStream content, java.lang.String contentType, java.lang.String flnm)Open a download dialog to save the specified content at the client with the suggested file name.
Note: You don't need to close the content (a InputStream), it will be closed automatically after download.static voidsave(java.io.Reader content, java.lang.String contentType, java.lang.String flnm)Open a download dialog to save the specified content at the client with the suggested file name.
Note: You don't need to close the content (a Reader), it will be closed automatically after download.static voidsave(java.lang.String path, java.lang.String contentType)Open a download dialog to save the resource of the specified path at the client.static voidsave(java.lang.String content, java.lang.String contentType, java.lang.String flnm)Open a download dialog to save the specified content at the client with the suggested file name.static voidsave(java.net.URL url, java.lang.String contentType)Open a download dialog to save the resource of the specified URL at the client.static voidsave(org.zkoss.util.media.Media media)Open a download dialog to save the specified content at the client.static voidsave(org.zkoss.util.media.Media media, java.lang.String flnm)Open a download dialog to save the specified content at the client with the suggested file name.static voidsaveAsZip(java.util.Map<org.zkoss.util.media.Media,java.lang.String> mediaMap, java.lang.String zipFilename)Downloads multiple media files with custom names as a single ZIP archive.static voidsaveAsZip(org.zkoss.util.media.Media[] medias, java.lang.String zipFilename)Downloads multiple media files as a single ZIP archive.static voidsaveAsZip(Filedownload.DownloadItem[] items, java.lang.String zipFilename)Downloads multiple files using DownloadItem objects as a single ZIP archive.static voidsaveMultiple(java.util.Map<org.zkoss.util.media.Media,java.lang.String> mediaMap)Downloads multiple media files with custom filenames.static voidsaveMultiple(org.zkoss.util.media.Media... medias)Downloads multiple media files using their original filenames.static voidsaveMultiple(Filedownload.DownloadItem... items)Downloads multiple files using DownloadItem objects.
-
-
-
Method Detail
-
save
public static void save(org.zkoss.util.media.Media media)
Open a download dialog to save the specified content at the client.
-
save
public static void save(org.zkoss.util.media.Media media, java.lang.String flnm)Open a download dialog to save the specified content at the client with the suggested file name.- Parameters:
media- the media to downloadflnm- the suggested file name, e.g., myfile.pdf. If null,Media.getName()is assumed.
-
save
public static void save(byte[] content, java.lang.String contentType, java.lang.String flnm)Open a download dialog to save the specified content at the client with the suggested file name.- Parameters:
content- the contentcontentType- the content type (a.k.a., MIME type), e.g., application/pdfflnm- the suggested file name, e.g., myfile.pdf. If null, no suggested name is provided.
-
save
public static void save(java.lang.String content, java.lang.String contentType, java.lang.String flnm)Open a download dialog to save the specified content at the client with the suggested file name.- Parameters:
content- the contentcontentType- the content type (a.k.a., MIME type), e.g., application/pdfflnm- the suggested file name, e.g., myfile.pdf. If null, no suggested name is provided.
-
save
public static void save(java.io.InputStream content, java.lang.String contentType, java.lang.String flnm)Open a download dialog to save the specified content at the client with the suggested file name.
Note: You don't need to close the content (a InputStream), it will be closed automatically after download.- Parameters:
content- the contentcontentType- the content type (a.k.a., MIME type), e.g., application/pdfflnm- the suggested file name, e.g., myfile.pdf. If null, no suggested name is provided.
-
save
public static void save(java.io.Reader content, java.lang.String contentType, java.lang.String flnm)Open a download dialog to save the specified content at the client with the suggested file name.
Note: You don't need to close the content (a Reader), it will be closed automatically after download.- Parameters:
content- the contentcontentType- the content type (a.k.a., MIME type), e.g., application/pdfflnm- the suggested file name, e.g., myfile.pdf. If null, no suggested name is provided.
-
save
public static void save(java.io.File file, java.lang.String contentType) throws java.io.FileNotFoundExceptionOpen a download dialog to save the specified file at the client.- 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.- Throws:
java.io.FileNotFoundException- if the file is not found.- Since:
- 3.0.8
-
save
public static void save(java.net.URL url, java.lang.String contentType) throws java.io.FileNotFoundExceptionOpen a download dialog to save the resource of the specified URL at the client. The path must be retrievable by use ofWebApp.getResource(java.lang.String).- 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 path's extension is used to determine the content type.- Throws:
java.io.FileNotFoundException- if the resource is not found.- Since:
- 3.0.8
-
save
public static void save(java.lang.String path, java.lang.String contentType) throws java.io.FileNotFoundExceptionOpen a download dialog to save the resource of the specified path at the client.- 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 path's extension is used to determine the content type.- Throws:
java.io.FileNotFoundException- if the resource is not found.- Since:
- 3.0.8
-
saveMultiple
public static void saveMultiple(org.zkoss.util.media.Media... medias)
Downloads multiple media files using their original filenames. The files will be downloaded sequentially to avoid browser cancellation issues.- Parameters:
medias- the media files to download- Since:
- 10.3.0
-
saveMultiple
public static void saveMultiple(java.util.Map<org.zkoss.util.media.Media,java.lang.String> mediaMap)
Downloads multiple media files with custom filenames. The files will be downloaded sequentially to avoid browser cancellation issues.- Parameters:
mediaMap- a map of media to filename pairs. If filename is null, the original media name is used.- Since:
- 10.3.0
-
saveMultiple
public static void saveMultiple(Filedownload.DownloadItem... items)
Downloads multiple files using DownloadItem objects. The files will be downloaded sequentially to avoid browser cancellation issues.- Parameters:
items- the download items containing media and optional custom filenames- Since:
- 10.3.0
-
saveAsZip
public static void saveAsZip(org.zkoss.util.media.Media[] medias, java.lang.String zipFilename)Downloads multiple media files as a single ZIP archive.- Parameters:
medias- the media files to include in the ZIPzipFilename- the name of the ZIP file (e.g., "download.zip")- Since:
- 10.3.0
-
saveAsZip
public static void saveAsZip(java.util.Map<org.zkoss.util.media.Media,java.lang.String> mediaMap, java.lang.String zipFilename)Downloads multiple media files with custom names as a single ZIP archive.- Parameters:
mediaMap- a map of media to filename pairs. If filename is null, the original media name is used.zipFilename- the name of the ZIP file (e.g., "download.zip")- Since:
- 10.3.0
-
saveAsZip
public static void saveAsZip(Filedownload.DownloadItem[] items, java.lang.String zipFilename)
Downloads multiple files using DownloadItem objects as a single ZIP archive.- Parameters:
items- the download items to include in the ZIPzipFilename- the name of the ZIP file (e.g., "download.zip")- Since:
- 10.3.0
-
-