首页 > 编程语言 > 详细

2020.06.06 SpringMVC中文件上传方式

时间:2020-06-08 09:38:30      阅读:47      评论:0      收藏:0      [点我收藏+]

1.技术分享图片

 

 

@RequestMapping("/fileupload2")
public String fileupload2(HttpServletRequest request,MultipartFile upload) throws Exception {
System.out.println("springMVC文件上传");
String path = request.getSession().getServletContext().getRealPath("/uploads");
//判断该路径是否存在
File file = new File(path);
if (!file.exists()){
file.mkdir();
}
String filename = upload.getOriginalFilename();
String uuid = UUID.randomUUID().toString().replace("-","");
filename=uuid+"_"+filename;
upload.transferTo(new File(path,filename));
return "success";
}

2020.06.06 SpringMVC中文件上传方式

原文:https://www.cnblogs.com/aojie/p/13063154.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!