<p:fileUpload> 总是给我空内容[重复]

Posted

技术标签:

【中文标题】<p:fileUpload> 总是给我空内容[重复]【英文标题】:<p:fileUpload> always give me null contents [duplicate] 【发布时间】:2013-08-05 15:48:50 【问题描述】:

我正在尝试按照 primefaces 用户指南中记录的内容以及在那里创建的一些帖子进行工作。

Upload file in JSF primefaces.

环境是:javaee full + jpa + jsf 2.2 + primefaces 4 + glassfish v4

我再次发帖,因为我已经尝试了我在网上找到的所有示例和建议,但没有成功。

我可以,用 event.getFile.getFileName 获取文件上传的名称,但内容始终为空

-------------更新-----------------

我的 xhtml 页面:

<h:form enctype="multipart/form-data">

                <p:outputLabel value="La photo :"/>
                <p:fileUpload fileUploadListener="#personController.upload"
        mode="advanced" 
        update="messages"
        sizeLimit="100000" 
        allowTypes="/(\.|\/)(gif|jpe?g|png)$/"/>
                <p:growl id="messages" showDetail="true"/>

            </h:form>

我的托管 bean:

@Named(value = "personController")
@SessionScoped
public class PersonController implements Serializable 

    /**
     * Creates a new instance of PersonController
     */
    @Inject
    private PersonneFacade personneService;
    private Personne current;
    private Personne newPerson;
    private List<Personne> personnes;


    public PersonController() 
    

    public List<Personne> getAll()
        return personneService.findAll();
    


    public void upload(FileUploadEvent event) 
        FacesMessage msg = new FacesMessage("Success! ", event.getFile().getFileName() + " is uploaded.");
        FacesContext.getCurrentInstance().addMessage(null, msg);
        // Do what you want with the file

        System.out.println(event.getFile().getFileName());
        System.out.println("le fichier " + event.getFile().getContents());
        newPerson.setPhoto(event.getFile().getContents());
    

我的 web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="3.1" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd">
    <context-param>
        <param-name>javax.faces.PROJECT_STAGE</param-name>
        <param-value>Development</param-value>
    </context-param>
    <servlet>
        <servlet-name>Faces Servlet</servlet-name>
        <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
        <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
        <servlet-name>Faces Servlet</servlet-name>
        <url-pattern>*.xhtml</url-pattern>
    </servlet-mapping>
    <session-config>
        <session-timeout>
            30
        </session-timeout>
    </session-config>
    <welcome-file-list>
        <welcome-file>index.xhtml</welcome-file>
    </welcome-file-list>

     <!-- ############################################# -->
<!-- # File upload                                      # -->
<!-- ############################################# -->
<filter>
    <filter-name>PrimeFaces FileUpload Filter</filter-name>
    <filter-class>
        org.primefaces.webapp.filter.FileUploadFilter
    </filter-class>

</filter>

<filter-mapping>
    <filter-name>PrimeFaces FileUpload Filter</filter-name>
    <servlet-name>Faces Servlet</servlet-name>
    <dispatcher>FORWARD</dispatcher>
</filter-mapping>


</web-app>

确定我的 pom.xml 上有:

<dependencies>
        <dependency>  
    <groupId>org.primefaces</groupId>  
    <artifactId>primefaces</artifactId>  
    <version>4.0</version>  
</dependency>
        <dependency>
            <groupId>commons-fileupload</groupId>
            <artifactId>commons-fileupload</artifactId>
            <version>1.3</version>
        </dependency>
        <dependency>
            <groupId>commons-io</groupId>
            <artifactId>commons-io</artifactId>
            <version>2.4</version>
        </dependency>
        <dependency>
            <groupId>org.eclipse.persistence</groupId>
            <artifactId>eclipselink</artifactId>
            <version>2.5.0-SNAPSHOT</version>
            <scope>provided</scope>
        </dependency>

当我尝试上传时,我得到了 glassfish 输出日志:

INFO:   mdmx.jpg
INFO:   le fichier null

有什么想法吗??

【问题讨论】:

相关:***.com/questions/8875818/… 我已经尝试了您的建议,但没有成功。在 chrome 调试工具上,我得到了 http 参数,它似乎是正确的,内容类型是“multipart/form-data”。我找不到问题的原因!! 我已经检查了 primefaces 的来源。看起来您的“文件”实际上是null,这会导致 NPE。如果您为/opt/upld 设置了正确的权限设置(chmod 和用户/组权限),那么就很难猜到了。 我在启动 Glassfish 4 服务器时注意到一个错误,它说:“警告:WELD-001529 为没有任何适当构造函数的类 org.primefaces.context.PrimePartialViewContextFactory 创建了一个 InjectionTarget 实现."。我认为这是造成 NPE 的主要原因。 【参考方案1】:

我已经解决了这个问题,如下所示:

上传对我有用:IOUtils.toByteArray(file.getInputstream());

环境是:Java EE 7(JPA, EJB, JSF 2.2.4), Glassfish V4, Primefaces 4

我在这里给出完整的例子,以供重用。

首先:上传.xhtml

<h:form enctype="multipart/form-data">
    <p:fileUpload fileUploadListener="#personController.handleFileUpload" />
            <p:growl id="messages" showDetail="true"/>
</h:form>

第二:PersonController.java(jsf 托管 bean): 包 com.sos.fso.grh.controllers;

import com.sos.fso.grh.entities.Person;
import com.sos.fso.grh.services.PersonFacade;
import java.io.ByteArrayInputStream;
import java.io.IOException;
import java.io.Serializable;
import java.util.List;
import javax.enterprise.context.SessionScoped;
import javax.faces.application.FacesMessage;
import javax.faces.context.FacesContext;
import javax.inject.Inject;
import javax.inject.Named;
import org.apache.commons.io.IOUtils;
import org.primefaces.event.FileUploadEvent;
import org.primefaces.model.DefaultStreamedContent;
import org.primefaces.model.UploadedFile;

@Named
@SessionScoped
public class PersonController implements Serializable

@Inject
private PersonFacade personService;

private Person current;
private Person newPerson;
private List<Person> personnes;

public void handleFileUpload(FileUploadEvent event) throws IOException 

    UploadedFile file = event.getFile();
    System.out.println(file.getFileName());

    byte[] foto = IOUtils.toByteArray(file.getInputstream());
    System.out.println(foto);
    newPerson.setPhoto(foto);
 //application code



第三个:web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="3.1" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd">
    <context-param>
        <param-name>javax.faces.PROJECT_STAGE</param-name>
        <param-value>Development</param-value>
    </context-param>
    <context-param>
        <param-name>primefaces.THEME</param-name>
        <param-value>bootstrap</param-value>
    </context-param>
         <context-param>   
 <param-name>primefaces.UPLOADER</param-name>   
 <param-value>auto</param-value>
</context-param>
    <servlet>
        <servlet-name>Faces Servlet</servlet-name>
        <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
        <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
        <servlet-name>Faces Servlet</servlet-name>
        <url-pattern>*.xhtml</url-pattern>
    </servlet-mapping>
    <session-config>
        <session-timeout>
            30
        </session-timeout>
    </session-config>
    <welcome-file-list>
        <welcome-file>index.xhtml</welcome-file>
    </welcome-file-list>
        </web-app>

如果您有一个实体 bean“person”,例如带有 @Lob 二进制属性,您可以用字节数据填充它。保存图像(或文件,如果需要)。

把它还原到一个

view.xhtml

    <!DOCTYPE html>
<html xmlns="http://www.w3c.org/1999/xhtml"   
 xmlns:h="http://java.sun.com/jsf/html"   
 xmlns:p="http://primefaces.org/ui">
<h:head>
</h:head>
<h:body>
    <h:form>
    #personController.current.FName

        <p:panelGrid columns="2">
        <p:outputLabel value="Nom :"/>
        <h:outputText value="#personController.current.FName" />

        <p:outputLabel value="Prénom :"/>
        <h:outputText value="#personController.current.LName" />

        <p:outputLabel value="Date de naissance :"/>
        <h:outputText value="#personController.current.birthDate" />

        <p:outputLabel value="photo :"/>
        <p:graphicImage value="#personController.byteToImage(personController.current.photo)" />
        </p:panelGrid>
        <p:commandLink value="retour a la liste" action="#personController.showList"/>
        </h:form>

</h:body>
</html>

以及恢复图像的 PersonController 方法(此代码是来自 *** 的 BalusC)

public DefaultStreamedContent byteToImage(byte[] imgBytes) throws IOException 
ByteArrayInputStream img = new ByteArrayInputStream(imgBytes);
return new DefaultStreamedContent(img,"image/jpg");

感谢大家帮助我。

再次感谢

【讨论】:

Primefaces 团队应该更新他们的文档,将 IOUtils.toByteArray(file.getInputstream()) 包含到 p:fileupload 部分。效果很好!!谢谢! 我在将 jsf 版本从 2.1.x 升级到 2.2.0 时遇到了同样的问题。('event.getFile().getContents()' throws 'NullpointerException')谢谢@Mohamed abdelbassat跨度> 【参考方案2】:

在您的应用中包含 Apache-Commons IOFileupload API:

Commons IO Commons Fileupload

【讨论】:

已经做到了。我有我的 Maven 依赖项的 apache commons-io 和 commons fileupload(最后一个是 primefaces 3.5 自动需要的)

以上是关于<p:fileUpload> 总是给我空内容[重复]的主要内容,如果未能解决你的问题,请参考以下文章

p:fileUpload 未在支持 bean 中设置上传的文件 [重复]

PrimeFaces p:fileUpload 不调用方法

p:fileUpload 中的监听器方法永远不会在 primefaces 中调用 [重复]

如何将上传的图片从 p:fileUpload 插入 MySQL 中的 BLOB?

p:fileupload图像预览不起作用

Primefaces FileUpload 与 PrettyFaces 和 JSF 2.2.3