无法阅读声部:
我的代码:
Part filePart = request.getPart("PdfFile");
out.print(filePart.getSize()+"");
错误:
由于未提供多部件配置,因此无法处理部件
答案 0 :(得分:-1)
我建议使用Apache Commons Fileupload: http://commons.apache.org/proper/commons-fileupload/
答案 1 :(得分:-1)
在上下文文件
中定义这样的多部分解析器<beans:bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
<beans:property name="maxUploadSize" value="10000000" />
</beans:bean>