Springboot 将前端传递的图片上传至Linux服务器并返回图片的url

问题由来:

用户个人信息需要添加头像功能

当前端程序是微信小程序时,前端将直接将图片 url 传送至服务端

但是当前端是 Web 页面时,前端传递的参数是一张图片,服务端需要将图片保存至 Linux 服务器的某个文件夹下,并将该图片的访问路径保存至数据库中。

 

pom.xml


 
 
  1. <!-- thymeleaf -->
  2. <dependency>
  3. <groupId>org.springframework.boot</groupId>
  4. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  5. </dependency>
  6. <dependency>
  7. <groupId>net.sourceforge.nekohtml</groupId>
  8. <artifactId>nekohtml</artifactId>
  9. <version> 1.9.22</version>
  10. </dependency>

 

application.properties


 
 
  1. # 自定义文件上传路径
  2. # Linux
  3. #web.upload-path=/root/photo
  4. # Windows 10
  5. web.upload-path=E:/image
  6. server.port= 8989
FileNameUtils: 生成新的文件名(利用 UUID 防止重名)
 
 

 
 
  1. package com.example.post.util;
  2. /**
  3. * @Auther: wyx
  4. * @Date: 2019-04-08 10:08
  5. * @Description:
  6. */
  7. public class FileNameUtils {
  8. /**
  9. * 获取文件后缀
  10. * @param fileName
  11. * @return
  12. */
  13. public static String getSuffix(String fileName){
  14. return fileName.substring(fileName.lastIndexOf( "."));
  15. }
  16. /**
  17. * 生成新的文件名
  18. * @param fileOriginName 源文件名
  19. * @return
  20. */
  21. public static String getFileName(String fileOriginName){
  22. return UUIDUtils.getUUID() + FileNameUtils.getSuffix(fileOriginName);
  23. }
  24. }

 

FileUtils: 上传图片的具体逻辑
 
 

 
 
  1. package com.example.post.util;
  2. import java.io.File;
  3. import java.io.IOException;
  4. import org.springframework.web.multipart.MultipartFile;
  5. /**
  6. * @Auther: wyx
  7. * @Date: 2019-04-08 10:10
  8. * @Description:
  9. */
  10. public class FileUtils {
  11. /**
  12. *
  13. * @param file 文件
  14. * @param path 文件存放路径
  15. * @param fileName 原文件名
  16. * @return
  17. */
  18. public static String upload(MultipartFile file, String path, String fileName){
  19. String newFileName = FileNameUtils.getFileName(fileName);
  20. // 生成新的文件名
  21. String realPath = path + "/" + newFileName;
  22. File dest = new File(realPath);
  23. //判断文件父目录是否存在
  24. if(!dest.getParentFile().exists()){
  25. dest.getParentFile().mkdir();
  26. }
  27. try {
  28. //保存文件
  29. file.transferTo(dest);
  30. return newFileName;
  31. } catch (IOException e) {
  32. e.printStackTrace();
  33. return null;
  34. }
  35. }
  36. }
FileUploadController
 
 

 
 
  1. package com.example.post.controller;
  2. import com.example.post.util.FileUtils;
  3. import org.springframework.beans.factory.annotation.Value;
  4. import org.springframework.stereotype.Controller;
  5. import org.springframework.web.bind.annotation.RequestMapping;
  6. import org.springframework.web.bind.annotation.RequestParam;
  7. import org.springframework.web.bind.annotation.ResponseBody;
  8. import org.springframework.web.multipart.MultipartFile;
  9. /**
  10. * @Auther: wyx
  11. * @Date: 2019-04-08 10:13
  12. * @Description:
  13. */
  14. @Controller
  15. public class FileUploadController {
  16. @Value( "${web.upload-path}")
  17. private String path;
  18. /**
  19. *
  20. * @param file 上传的文件
  21. * @return
  22. */
  23. @ResponseBody
  24. @RequestMapping( "/fileUpload")
  25. public String upload(@RequestParam("file") MultipartFile file){
  26. //1定义要上传文件 的存放路径
  27. String localPath= "E:/image";
  28. // String localPath = "/root/photo";
  29. //2获得文件名字
  30. String fileName=file.getOriginalFilename();
  31. //2上传失败提示
  32. String warning= "";
  33. String newFileName = FileUtils.upload(file, localPath, fileName);
  34. if(newFileName != null){
  35. //上传成功
  36. warning= "上传成功";
  37. } else{
  38. warning= "上传失败";
  39. }
  40. System.out.println(warning);
  41. return warning;
  42. }
  43. }

运行后利用 Postman 进行本地测试,则设置的路径下出现了该图片,需要上传至 Linux 服务器时,只需要将上传路径修改即可

 

GitHub地址:https://github.com/Wyxwx/PictureUploadDemo

参考博文:https://blog.csdn.net/qq_39529566/article/details/81872062

评论 4
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值