我有一个奇怪的问题,没有从XHTML调用文件下载选项。我是JSF的新手,所以它可能是我搞砸的基本内容,但任何帮助都会受到赞赏。
这是我的XHTML
<p>Files List</p>
<h:form prependId="false">
<p:dataTable value="#{pc_ArchiveFiles.archiveFiles}" var="fs"
paginator="true" rows="5"
paginatorTemplate="{CurrentPageReport} {FirstPageLink} {PreviousPageLink} {PageLinks} {NextPageLink} {LastPageLink} {RowsPerPageDropdown}"
rowsPerPageTemplate="5,10,15">
<f:facet name="header">
Client Files
</f:facet>
<p:column>
<f:facet name="header">
File Name
</f:facet>
<h:outputText value="#{fs.fileName}" />
</p:column>
<p:column>
<f:facet name="header">
File Size
</f:facet>
<h:outputText value="#{fs.fileSizeInKB}" />
</p:column>
<p:column>
<f:facet name="header">
Download File
</f:facet>
<p:commandLink id="downloadLink" value="Download" ajax="false">
<p:fileDownload value="#{pc_ArchiveFiles.downloadPDF}" />
</p:commandLink>
</p:column>
</p:dataTable>
</h:form>
这是支持bean
@ManagedBean(value = "pc_ArchiveFiles")
@RequestScoped
public class ArchiveFiles extends PageCodeBase {
private static final Logger logger = LoggerFactory
.getLogger(ArchiveFiles.class);
@Value("${archive.location}")
private String repository;
public List<ArchiveFile> getArchiveFiles() {
Map<String, String> params = FacesContext.getCurrentInstance()
.getExternalContext().getRequestParameterMap();
subCategory = params.get("categoryName");
// Build request object
ArchiveFilesRequest request = new ArchiveFilesRequest();
request.setCaseWorkerId(SecurityUtil.getLoggedInUser().getLoggedUserId());
request.setClientId(getSelectedConsumer().getConsumerId());
request.setCategoryName(subCategory);
ArchiveFilesResponse response = archiveService.getArchiveFiles(request);
if((response.getResponseType() == ResponseType.SUCCESS || response.getResponseType() == ResponseType.WARNING) && response.getFileCount() > 0) { // There is at least one file
archiveFiles = new ArrayList<ArchiveFile>();
archiveFiles.addAll(response.getFileSet());
return archiveFiles;
} else {
return Collections.<ArchiveFile> emptyList();
}
}
public void downloadPDF() throws IOException {
FacesContext facesContext = FacesContext.getCurrentInstance();
ExternalContext externalContext = facesContext.getExternalContext();
HttpServletResponse response = (HttpServletResponse) externalContext.getResponse();
facesContext.responseComplete();
}
}
当我点击下载时,我想要调用downloadPDF()。但它似乎再次调用getArchiveFiles()方法而不是downloadPDF()。我已将p:CommandLink更改为以下代码,但它仍然没有调用正确的方法。除此之外,我必须传递filename参数,如果我得到这个工作。
<h:commandLink id="downloadLink" value="Download PDF" target="_blank" action="#{pc_ArchiveFiles.downloadPDF}" />
答案 0 :(得分:0)
值属性应该是StreamingContent的实例。 请查看第174页的文档here 它应该像下面的代码:
<p:commandButton id="downloadLink" value="Download" ajax="false" onclick="PrimeFaces.monitorDownload(start, stop)"
icon="ui-icon-arrowthichk-s">
<p:fileDownload value="#{fileDownloadController.file}" />
</p:commandButton>
private StreamedContent file;
public StreamedContent getFile() {
return file;
}
public void setFile(StreamedContent file){
InputStream stream = ((ServletContext)FacesContext.getCurrentInstance().getExternalContext().getContext()).getResourceAsStream("/images/optimusprime.jpg");
file = new DefaultStreamedContent(stream, "image/jpg", "downloaded_optimus.jpg");
}
如果您希望从 h:commandLink 触发downloadPDF()侦听器,则应使用actionListener而不是action属性:
<h:commandLink id="downloadLink" value="Download PDF" target="_blank" actionListener="#{pc_ArchiveFiles.downloadPDF}" />