無法讀取部分:的Java servlet上傳新文件服務器
我的代碼:
Part filePart = request.getPart("PdfFile");
out.print(filePart.getSize()+"");
錯誤:
無法處理的部分,因爲沒有多部分配置有已提供
無法讀取部分:的Java servlet上傳新文件服務器
我的代碼:
Part filePart = request.getPart("PdfFile");
out.print(filePart.getSize()+"");
錯誤:
無法處理的部分,因爲沒有多部分配置有已提供
我推薦使用Apache Commons Fileupload: http://commons.apache.org/proper/commons-fileupload/
自2009年以來這是不必要的。此外,問題已經顯示出新的方法。請趕上。 – BalusC
定義了分段解析器像這樣在你的背景文件
<beans:bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
<beans:property name="maxUploadSize" value="10000000" />
</beans:bean>
問題中沒有任何內容表示OP正在使用Spring。推薦安裝一個完整的第三方框架,因爲OP無法弄清楚如何使用標準的API方法並不意味着什麼。 – BalusC
見http://stackoverflow.com/questions/24578680/error-unable-to-process-parts-as-no-multi-part配置已經提供 –