SpringMVC文件上传
----------------------siwuxie095 SpringMVC 文件上传 1 、导入文件上传的 jar 包 ( 1 ) Commons FileUpload https://commons.apache.org/proper/commons-fileupload/download_fileupload.cgi ( 2 ) Commons IO https://commons.apache.org/proper/commons-io/download_io.cgi 2 、配置 文件上传解析器 在 SpringMVC 核心配置文件 dispatcher-servlet.xml 中添加如下内容: <!-- 配置 MultipartResolver --> <bean id = "multipartResolver" class = "org.springframework.web.multipart.commons.CommonsMultipartResolver" > <!-- 配置默认编码为 UTF-8 --> <property name = "defaultEncoding" value = "UTF-8" ></property> <!-- 配置文件上传的最大值为 5 MB ,这里单位为字节,所以是 5*1024*1024 --> <property