2016-02-27 49 views
0

無法讀取部分:的Java servlet上傳新文件服務器

我的代碼:

Part filePart = request.getPart("PdfFile"); 



out.print(filePart.getSize()+""); 

錯誤:

無法處理的部分,因爲沒有多部分配置有已提供

+0

見http://stackoverflow.com/questions/24578680/error-unable-to-process-parts-as-no-multi-part配置已經提供 –

回答

-1

定義了分段解析器像這樣在你的背景文件

<beans:bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver"> 
    <beans:property name="maxUploadSize" value="10000000" /> 
</beans:bean> 
+0

問題中沒有任何內容表示OP正在使用Spring。推薦安裝一個完整的第三方框架,因爲OP無法弄清楚如何使用標準的API方法並不意味着什麼。 – BalusC