Spring Boot实现图片上传功能
本文实例为大家分享了Spring Boot图片上传的具体代码,供大家参考,具体内容如下
package com.clou.inteface.domain.web.user; import java.io.File; import java.io.IOException; import java.util.HashMap; import java.util.Map; import org.apache.commons.lang3.StringUtils; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Value; import org.springframework.http.MediaType; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.bind.annotation.RestController; import org.springframework.web.multipart.MultipartFile; /** * 文件上传 * @author Fly * */ @RestController public class FileUpload { /** * 用户管理 -> 业务层 */ @Autowired private SUserService sUserService; /** * 文件上传根目录(在Spring的application.yml的配置文件中配置):<br> * web: * upload-path: (jar包所在目录)/resources/static/ */ @Value("${web.upload-path}") private String webUploadPath; /** * ResultVo是一个对象,包含: * private int errorCode; * private String errorMsg; * private Integer total; * private Object data; */ /** * 基于用户标识的头像上传 * @param file 图片 * @param userId 用户标识 * @return */ @PostMapping(value = "/fileUpload", consumes = MediaType.MULTIPART_FORM_DATA_VALUE, produces = MediaType.APPLICATION_JSON_VALUE) public ResultVo fileUpload(@RequestParam("file") MultipartFile file, @RequestParam("userId") Integer userId) { ResultVo resultVo = new ResultVo(); if (!file.isEmpty()) { if (file.getContentType().contains("image")) { try { String temp = "images" + File.separator + "upload" + File.separator; // 获取图片的文件名 String fileName = file.getOriginalFilename(); // 获取图片的扩展名 String extensionName = StringUtils.substringAfter(fileName, "."); // 新的图片文件名 = 获取时间戳+"."图片扩展名 String newFileName = String.valueOf(System.currentTimeMillis()) + "." + extensionName; // 数据库保存的目录 String datdDirectory = temp.concat(String.valueOf(userId)).concat(File.separator); // 文件路径 String filePath = webUploadPath.concat(datdDirectory); File dest = new File(filePath, newFileName); if (!dest.getParentFile().exists()) { dest.getParentFile().mkdirs(); } // 判断是否有旧头像,如果有就先删除旧头像,再上传 SUser userInfo = sUserService.findUserInfo(userId.toString()); if (StringUtils.isNotBlank(userInfo.getUserHead())) { String oldFilePath = webUploadPath.concat(userInfo.getUserHead()); File oldFile = new File(oldFilePath); if (oldFile.exists()) { oldFile.delete(); } } // 上传到指定目录 file.transferTo(dest); // 将图片流转换进行BASE64加码 //BASE64Encoder encoder = new BASE64Encoder(); //String data = encoder.encode(file.getBytes()); // 将反斜杠转换为正斜杠 String data = datdDirectory.replaceAll("\\\\", "/") + newFileName; Map<String, Object> resultMap = new HashMap<>(); resultMap.put("file", data); resultVo.setData(resultMap); resultVo.setError(1, "上传成功!"); } catch (IOException e) { resultVo.setError(0, "上传失败!"); } } else { resultVo.setError(0, "上传的文件不是图片类型,请重新上传!"); } return resultVo; } else { resultVo.setError(0, "上传失败,请选择要上传的图片!"); return resultVo; } } }
以上代码需配置SUserService,一个业务层接口;
一个ResultVo对象,属性已给出;
一个基于Spring Boot的 .yml配置文件的配置。
访问图片的时候,需要配置.yml文件
spring:
#配置http访问服务器图片的路径
resources:
static-locations: classpath:/META-INF/resources/,classpath:/resources/,classpath:/static/,classpath:/public/,file:${web.upload-path}
然后基于服务的IP与端口,http//IP:port/resources/static/图片路径(图片名)
更多精彩内容,请点击 《spring上传下载专题》进行深入学习和研究。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。
- spring MVC + bootstrap实现文件上传示例(带进度条)
- springMVC+ajax实现文件上传且带进度条实例
- springMVC实现前台带进度条文件上传的示例代码
- SpringMVC文件上传 多文件上传实例
- 详解SpringBoot文件上传下载和多文件上传(图文)
- SpringMVC 文件上传配置,多文件上传,使用的MultipartFile的实例
- 详解SpringMVC使用MultipartFile实现文件的上传
- Java Spring MVC 上传下载文件配置及controller方法详解
- SpringMVC中MultipartFile上传获取图片的宽度和高度详解
- 基于SpringBoot实现图片上传与显示
- SpringMVC上传图片与访问
- springboot带有进度条的上传功能完整实例
相关文章
Maven的配置文件pom.xml详解(含常用plugin)
pom.xml是Maven项目的核心配置文件,它是 项目对象模型 - Project Object Model(POM)的缩写,本文我们将全面解析pom.xml,了解其结构和属性,以及如何使用它来管理项目,感兴趣的朋友跟随小编一起看看吧2024-08-08JetBrains IntelliJ IDEA 2020安装与使用教程详解
这篇文章主要介绍了JetBrains IntelliJ IDEA 2020安装与使用教程,本文通过图文并茂的形式给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下2020-06-06SpringMVC使用@ExceptionHandler注解在Controller中处理异常
这篇文章主要为大家介绍了SpringMVC使用@ExceptionHandler注解在Controller中处理异常示例详解,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪2023-10-10
最新评论