May 2015
Beginner to intermediate
412 pages
8h 44m
English
The fileDownload component can be used to stream binary contents, such as files to requesting browsers, by wrapping the components with any JSF command component, such as a button or link.
The value of the fileDownload component should be an instance of org.primefaces.model.StreamedContent. The concrete class org.primefaces.model.DefaultStreamedContent could be used in your implementation, which is also suggested by us.
The following is the backing bean implementation for the file download:
public class FileBean implements Serializable { private StreamedContent file; public FileBean() { InputStream stream = this.getClass(). getResourceAsStream("/chapter7/PFSamplePDF.pdf"); file = new DefaultStreamedContent(stream, "application/pdf", ...Read now
Unlock full access