时间:2021-05-19
本文为大家分享了SpringBoot实现图片上传与显示的具体代码,供大家参考,具体内容如下
SpringBoot实现图片上传与显示:Demo地址
效果图预览
思路
步骤
pom相关依赖
application.properties相关配置
除了视图模板相关的配置,重点是要配置一下文件上传的内存大小和文件上传路径
server.port=8102### FreeMarker 配置spring.freemarker.allow-request-override=false#Enable template caching.启用模板缓存。spring.freemarker.cache=falsespring.freemarker.check-template-location=truespring.freemarker.charset=UTF-8spring.freemarker.content-type=text/htmlspring.freemarker.expose-request-attributes=falsespring.freemarker.expose-session-attributes=falsespring.freemarker.expose-spring-macro-helpers=false#设置面板后缀spring.freemarker.suffix=.ftl# 设置单个文件最大内存multipart.maxFileSize=50Mb# 设置所有文件最大内存multipart.maxRequestSize=50Mb# 自定义文件上传路径web.upload-path=E:/Develop/Files/Photos/生成文件名
不准备生成文件名的可以略过此步骤
package com.wu.demo.fileupload.demo.util;public class FileNameUtils { /** * 获取文件后缀 * @param fileName * @return */ public static String getSuffix(String fileName){ return fileName.substring(fileName.lastIndexOf(".")); } /** * 生成新的文件名 * @param fileOriginName 源文件名 * @return */ public static String getFileName(String fileOriginName){ return UUIDUtils.getUUID() + FileNameUtils.getSuffix(fileOriginName); }}import java.util.UUID;/** * 生成文件名 */public class UUIDUtils { public static String getUUID(){ return UUID.randomUUID().toString().replace("-", ""); }}文件上传工具类
package com.wu.demo.fileupload.demo.util;import org.springframework.web.multipart.MultipartFile;import java.io.File;import java.io.IOException;/** * 文件上传工具包 */public class FileUtils { /** * * @param file 文件 * @param path 文件存放路径 * @param fileName 源文件名 * @return */ public static boolean upload(MultipartFile file, String path, String fileName){ // 生成新的文件名 //String realPath = path + "/" + FileNameUtils.getFileName(fileName); //使用原文件名 String realPath = path + "/" + fileName; File dest = new File(realPath); //判断文件父目录是否存在 if(!dest.getParentFile().exists()){ dest.getParentFile().mkdir(); } try { //保存文件 file.transferTo(dest); return true; } catch (IllegalStateException e) { // TODO Auto-generated catch block e.printStackTrace(); return false; } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); return false; } }}Controller
package com.wu.demo.fileupload.demo.controller;import com.wu.demo.fileupload.demo.util.FileUtils;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.beans.factory.annotation.Value;import org.springframework.core.io.ResourceLoader;import org.springframework.http.ResponseEntity;import org.springframework.stereotype.Controller;import org.springframework.web.bind.annotation.RequestMapping;import org.springframework.web.bind.annotation.RequestParam;import org.springframework.web.multipart.MultipartFile;import javax.servlet.http.HttpServletResponse;import java.util.Map;@Controllerpublic class TestController { private final ResourceLoader resourceLoader; @Autowired public TestController(ResourceLoader resourceLoader) { this.resourceLoader = resourceLoader; } @Value("${web.upload-path}") private String path; /** * 跳转到文件上传页面 * @return */ @RequestMapping("test") public String toUpload(){ return "test"; } /** * * @param file 要上传的文件 * @return */ @RequestMapping("fileUpload") public String upload(@RequestParam("fileName") MultipartFile file, Map<String, Object> map){ // 要上传的目标文件存放路径 String localPath = "E:/Develop/Files/Photos"; // 上传成功或者失败的提示 String msg = ""; if (FileUtils.upload(file, localPath, file.getOriginalFilename())){ // 上传成功,给出页面提示 msg = "上传成功!"; }else { msg = "上传失败!"; } // 显示图片 map.put("msg", msg); map.put("fileName", file.getOriginalFilename()); return "forward:/test"; } /** * 显示单张图片 * @return */ @RequestMapping("show") public ResponseEntity showPhotos(String fileName){ try { // 由于是读取本机的文件,file是一定要加上的, path是在application配置文件中的路径 return ResponseEntity.ok(resourceLoader.getResource("file:" + path + fileName)); } catch (Exception e) { return ResponseEntity.notFound().build(); } }}页面
页面主要是from表单和下面的 <img src="/show?fileName=${fileName}" /> ,其余都是细节。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
基于ASP.Net+easyUI框架上传图片,实现图片上传,提交表单://检查图片的格式是否正确,同时实现预览functionsetImagePreview(o
springboot整合vue实现上传下载文件,供大家参考,具体内容如下环境springboot1.5.x完整代码下载:springboot整合vue实现上传下
本文实例讲述了基于.net实现裁剪网站上传图片的方法。由于客户端Javascript不能操作文件,所以只能先上传图片再在服务器端剪切。1、上传图片2、Javas
前言h5实训时实现的一个图片上传即时显示的效果,如下图所示正文Html代码头像上传:js脚本代码functiongetObjectURL(
基于VUE选择上传图片并在页面显示,图片可删除,具体内容如下demo例子:依赖文件:jqueryformHTML文本内容:相关照片上传照片提交JS文本内容:/*