SpringMVC框架06——文件上传与下载
1、文件上传 Spring MVC框架的文件上传是基于commons-fileupload组件的文件上传,只不过Spring MVC框架在原有文件上传组件上做了进一步封装,简化了文件上传的代码实现。 1.1、单文件上传 需要commons-fileupload组件相关依赖 < dependency > < groupId > commons-fileupload </ groupId > < artifactId > commons-fileupload </ artifactId > < version > 1.3.1 </ version > </ dependency > < dependency > < groupId > commons-io </ groupId > < artifactId > commons-io </ artifactId > < version > 2.4 </ version > </ dependency > 页面中的form表单上添加多部件属性,fileupload.jsp < form action ="${pageContext.request.contextPath}/onefile" method ="post" enctype ="multipart/form-data" > 选择文件: < input type ="file"