primefaces fileupload无效的文件类型doc,docx

11 jsf file-upload facelets primefaces

我想使用primefaces fileUpload上传doc或docx文件,虽然我指定它显示的 文件类型无效的文件类型

在此输入图像描述

<p:fileUpload cancelLabel="#{contenu.annuler}"
    fileUploadListener="#{utilAdminBean.fileUpload}"
    allowTypes="/(\.|\/)(doc|docx)$/"
    multiple="false" mode="advanced" sizeLimit="52428800"
    showButtons="false" />
Run Code Online (Sandbox Code Playgroud)

小智 14

我找到了解决方案,我忘了在里面添加fileupload组件 <h:form nctype="multipart/form-data">

功能代码如下:

<h:form id="formcontract" enctype="multipart/form-data" dir="rtl">
    <p:fileUpload cancelLabel="#{contenu.annuler}"
        fileUploadListener="#{utilAdminBean.fileUpload}"
        allowTypes="/(\.|\/)(doc|docx|xls|xlsx|pdf)$/"
        multiple="false" mode="advanced" sizeLimit="52428800"
        showButtons="false" />
</h:form>
Run Code Online (Sandbox Code Playgroud)