5

What a may to reload a jsf page after primefaces upload?

I try with javascript oncomplete="javascript:window.location.reload()", but it's doesn't work:

xhtml:

<h:form>
    <p:messages showDetail="true"/>  
    <p:fileUpload fileUploadListener="#{revistauploadBean.upload}"
                  mode="advanced" dragDropSupport="false" merge="true"  
                  uploadLabel="Enviar" cancelLabel="Cancelar"
                  oncomplete="javascript:window.location.reload()"
                  label="Procurar PDF" sizeLimit="1000000000" fileLimit="3"
                  allowTypes="/(\.|\/)(pdf)$/" />
</h:form>

Bean:

public void upload(FileUploadEvent event) throws SQLException {  
    LoginAuthentication user = new LoginAuthentication();
    FacesMessage msg = new FacesMessage("Success! ", event.getFile().getFileName() 
        + " is uploaded.");  
    FacesContext.getCurrentInstance().addMessage(null, msg);
    // Do what you want with the file        
    try {
        copyFile(event.getFile().getFileName(), event.getFile().getInputstream());
        ConectaBanco mysql = new ConectaBanco();
        mysql.insere("INSERT INTO edicoes VALUES (NULL, '" 
            + mysql.pegaIDrev(user.getNome()) 
            + "', NULL, NULL, NULL, NULL, '" 
            + event.getFile().getFileName()
            + "' );");
        File pasta = new File(caminhoPastaPDF 
            + "/convertidos/" 
            + event.getFile().getFileName());
        pasta.mkdir();
        convertePdf(event.getFile().getFileName());
        FacesMessage msg1 = new FacesMessage("Succesful", event.getFile().getFileName() 
            + " is uploaded.");  
        FacesContext.getCurrentInstance().addMessage(null, msg1); 
    } catch (IOException e) {
        e.printStackTrace();
    }

}  

public void copyFile(String fileName, InputStream in) {
    try {
        // write the inputStream to a FileOutputStream
        OutputStream out = new FileOutputStream(new File(destination + fileName));
        int read = 0;
        byte[] bytes = new byte[1024];
        while ((read = in.read(bytes)) != -1) {
            out.write(bytes, 0, read);
        }
        in.close();
        out.flush();
        out.close();
        ////System.out.println("New file created!");
    } 
}

There are another ways to do that? I want to refresh a <a4j:repeat>

4

3 回答 3

2

<p:fileUpload /> has an update attribute which, given @form value, renders the whole form again.

<p:fileUpload fileUploadListener="#{fileUploadController.handleFileUpload}" 
    mode="advanced" dragDropSupport="false"  
    update="@form" sizeLimit="100000" fileLimit="3" 
    allowTypes="/(\.|\/)(gif|jpe?g|png)$/" /> 

Otherwise, if you want to get rid of ajax features, you also have the basic fileUpload component.

<p:fileUpload value="#{fileUploadController.file}" mode="simple"/>  

<p:commandButton value="Submit" ajax="false"  
            actionListener="#{fileUploadController.upload}"/> 

Basically, try not javascripting what is already done!

于 2013-08-22T18:49:17.753 回答
2

请尝试使用

onsuccess="location.reload();"

它对我很有效。在点击保存按钮以查看新上传的文件后,我正在使用它重新加载我的页面。当您使用更新所有表单时它不起作用 update="@(form)"

于 2016-07-14T13:45:54.243 回答
0

请尝试在上传方法末尾添加:

ExternalContext ec = FacesContext.getCurrentInstance().getExternalContext();
ec.redirect(ec.getRequestContextPath()+"/faces/yourpage.xhtml");

重新加载同一页面。对我来说,它工作正常。

于 2020-12-18T17:39:00.013 回答