primefaces fileupload invalid file type doc, docx

后端 未结 1 1258
庸人自扰
庸人自扰 2021-02-20 05:38

I want to upload doc or docx file using primefaces fileUpload,although I specify the type of file it display Invalid file type

相关标签:
1条回答
  • 2021-02-20 06:20

    I found the solution,I forgot to add to the fileupload component inside <h:form nctype="multipart/form-data">

    functional code is as follows:

    <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>
    
    0 讨论(0)
提交回复
热议问题