最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How reload jsf page after primefaces upload? - Stack Overflow

programmeradmin1浏览0评论

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

I try with javascript onplete="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"
                  onplete="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>

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

I try with javascript onplete="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"
                  onplete="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>

Share Improve this question edited Aug 22, 2013 at 19:16 Vadim 8,7894 gold badges45 silver badges51 bronze badges asked Aug 22, 2013 at 18:35 Kelson VictorKelson Victor 511 gold badge1 silver badge3 bronze badges 1
  • uumm, try it without "javascript:". It should be able to perform a reload. BUT you will probably have the problem that you will reload the page with the wrong URL. If you do not navigate with ?faces-redirect=true, then your URL will always lag behind by one page – noone Commented Aug 22, 2013 at 18:50
Add a ment  | 

3 Answers 3

Reset to default 3

Please, try to use

onsuccess="location.reload();"

It works for me pretty well. I am using it to reload my page after hitting on save button to see new uploaded file. It would not work when you use updating all forms update="@(form)"

<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 ponent.

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

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

Basically, try not javascripting what is already done!

Please try to add at the end of upload method:

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

to reload the same page. For me it works fine.

发布评论

评论列表(0)

  1. 暂无评论