1

我正在尝试在我的页面上下载 pdf 文件:

                <p:commandButton action="#{patientCardMB.saveHistoryPdf()}" value="PDF" ajax="false" icon="ui-icon-document" onclick="PrimeFaces.monitorDownload(start, stop)">
                    <p:fileDownload value="#{patientCardMB.file}" />  
                </p:commandButton>

保存历史方法:

public String saveHistoryPdf() throws FileNotFoundException {
    ArrayList<PatientCard> patientHistory = (ArrayList) getHistory();
    if (new HistoryPdf().createPdf(patientHistory)) {
        InputStream stream = new FileInputStream("C:\\Users\\XXXX\\Documents\\NetBeansProjects\\Project\\pdf\\" + patientHistory.get(0).getPatientId().getFirstName() + patientHistory.get(0).getPatientId().getLastName() + ".pdf");
        file = new DefaultStreamedContent(stream, "application/pdf", "dsadsaa.pdf");
        sendInfoMessageToUser("Pdf został stworzony");
    } else {
        sendErrorMessageToUser("Podczas tworzenia pliku pdf wystąpił błąd");
    }
    return "pdf";
}

但是文件下载不起作用。任何人都可以帮忙吗?

4

1 回答 1

4

我认为您的操作方法 fromp:commandButton需要提前调用,因为StreamedContent尚未准备好。您可以使用某种init方法来执行此操作,使用 anactionListener而不是,action或者您可以像这样重写该saveHistoryPdf方法:

public StreamedContent saveHistoryPdf() throws FileNotFoundException {
  ArrayList<PatientCard> patientHistory = (ArrayList) getHistory();
  if (new HistoryPdf().createPdf(patientHistory)) {
    InputStream stream = new FileInputStream("C:\\Users\\XXXX\\Documents\\NetBeansProjects\\Project\\pdf\\" + patientHistory.get(0).getPatientId().getFirstName() + patientHistory.get(0).getPatientId().getLastName() + ".pdf");
    file = new DefaultStreamedContent(stream, "application/pdf", "dsadsaa.pdf");
    sendInfoMessageToUser("Pdf został stworzony");
  } else {
    sendErrorMessageToUser("Podczas tworzenia pliku pdf wystąpił błąd");
  }

  return file;
}

因此将 xhtml 代码更改为:

<p:commandButton value="PDF" ajax="false" icon="ui-icon-document" onclick="PrimeFaces.monitorDownload(start, stop)">
  <p:fileDownload value="#{patientCardMB.saveHistoryPdf}" />  
</p:commandButton>
于 2013-09-05T09:43:32.620 回答