1. 前端代码
<form action="/fileUpload" method="post" enctype="multipart/form-data">
图片名称<input type="text" name="picname"/><br/>
上传<input type="file" name="uploadFile"/><br/>
<input type="submit" value="上传"/>
</form>
注意:
1.form表单的enctype 取值必须是:multipart/form-data (默认值是:application/x-www-form-urlencoded)
2.method 属性取值必须是 Post
3. 提供一个文件选择域<input type=”file” />
2.后端代码
1.导入jar包
使用 Commons-fileupload 组件实现文件上传
需要导入该组件相应的支撑 jar 包:Commons-fileupload 和
commons-io。commons-io 不属于文件上传组件的开发 jar 文件,但Commons-fileupload 组件从 1.1 版本开始,它
工作时需要 commons-io 包的支持
package com.xuecheng.test.rabbitmq;
import sun.nio.ch.Net;
import java.text.SimpleDateFormat;
import java.util.UUID;
/**
* 文件上传的的控制器
*
*/
@Controller("fileUploadController")
public class FileUploadController {
/**
* 文件上传
*/
@RequestMapping("/fileUpload")
public String testResponseJson(String picname,MultipartFile uploadFile,HttpServletRequest request) throws Exception{
String fileName = "";
//1.获取原始文件名
String uploadFileName = uploadFile.getOriginalFilename();
//2.截取文件扩展名
String extendName = uploadFileName.substring(uploadFileName.lastIndexOf(".")+1,uploadFileName.length());
//3.把文件加上随机数,防止文件重复
String uuid = UUID.randomUUID().toString().replace("-", "").toUpperCase();
//4.判断是否输入了文件名
if(!StringUtils.isEmpty(picname)) {
fileName = uuid+"_"+picname+"."+extendName;
}else {
fileName = uuid+"_"+uploadFileName;
}
System.out.println(fileName);
//5.获取文件路径
ServletContext context = request.getServletContext();
String basePath = context.getRealPath("/uploads");
String datePath = new SimpleDateFormat("yyyy-MM-dd").format(new Date());
File file = new File(basePath+"/"+datePath);
if(!file.exists()) {
file.mkdirs();
}
//6.使用 MulitpartFile 接口中方法,把上传的文件写到指定位置
uploadFile.transferTo(new File(file,fileName));
return "success";
}
}
3.配置文件解析器
<!-- 配置文件上传解析器 -->
<bean id="multipartResolver" <!-- id 的值是固定的-->
class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
<!-- 设置上传文件的最大尺寸为 5MB -->
<property name="maxUploadSize">
<value>5242880</value>
</property>
</bean>
注意:
文件上传的解析器 id 是固定的,不能起别的名称,否则无法实现请求参数的绑定。(不光是文件,其他
字段也将无法绑定)