2016-04-09 10 views
0

Ich benutze JSF, habe versucht, Datei-Uploader zu verwenden, aber eine HTML-Datei wird nicht unterstützt.ist es möglich, eine HTM-Datei in JSF2?

mein Fehler ist:

org.apache.tomcat.util.http.fileupload.FileUploadBase $ InvalidContentTypeException: Die Anfrage kann noch kein multipart/form-data oder multipart/mixed Strom, Inhaltstyp enthalten Header ist application/x-www-form-urlencoded; charset = UTF-8

Antwort

0

Sie vielleicht fehlt enctype="multipart/form-data"

<form action="..." enctype="multipart/form-data" method="post"> 
    <p> 
    What is your name? <input type="text" name="submit-name"><br> 
    What files are you sending? <input type="file" name="files"><br> 
    <input type="submit" value="Send"> <input type="reset"> 
</form> 

Referenz: https://www.w3.org/TR/html401/interact/forms.html#h-17.13.4.2