java实现文件上传
2021/5/20 22:24:40
本文主要是介绍java实现文件上传,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
java实现文件上传
前端页面
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org" xmlns:sec="http://www.thymeleaf.org/thymeleaf-extras-springsecurity3"> <head> <meta charset="UTF-8" /> <title>Insert title here</title> </head> <body> <h1 th:inlines="text">文件上传</h1> <form action="地址" method="post" enctype="multipart/form-data"> <p>选择文件: <input type="file" name="file"/></p> <p><input type="submit" value="提交"/></p> </form> </body> </html>
使用enctype=“multipart/form-data” method="post"来表示进行文件上传
后端接口
@Slf4j @RestController public class UploadFileController { @PostMapping("/upload") public String upload(@RequestParam("file")MultipartFile file, HttpServletRequest request){ try { if (file.isEmpty()){ return "file is empty"; } String filename = file.getOriginalFilename(); log.info("上传文件名为:"+filename); //设置文件存储路径 String filePath = "路径"; String path = filePath+filename; log.info("path为"+path); File dest = new File(path); if (!dest.getParentFile().exists()){ dest.getParentFile().mkdirs(); //新建文件夹 } file.transferTo(dest);//文件写入 return "upload success"; }catch (IllegalStateException e){ e.printStackTrace(); }catch (IOException e){ e.printStackTrace(); } return "upload failure"; } }
这篇关于java实现文件上传的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-26Java语音识别项目资料:新手入门教程
- 2024-11-26JAVA语音识别项目资料:新手入门教程
- 2024-11-26Java语音识别项目资料:入门与实践指南
- 2024-11-26Java云原生资料入门教程
- 2024-11-26Java云原生资料入门教程
- 2024-11-26Java云原生资料:新手入门教程
- 2024-11-25Java创意资料:新手入门的创意学习指南
- 2024-11-25JAVA对接阿里云智能语音服务资料详解:新手入门指南
- 2024-11-25Java对接阿里云智能语音服务资料详解
- 2024-11-25Java对接阿里云智能语音服务资料详解