January 2013
Intermediate to advanced
328 pages
7h 14m
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 for simple purposes. The following is the backing bean implementation for the file download example along with the component definition.
public class FileController implements Serializable { private StreamedContent file; public FileController() { InputStream stream = this.getClass(). getResourceAsStream("/chapter7/PFSamplePDF.pdf"); file = new DefaultStreamedContent(stream, ...Read now
Unlock full access