首页 > 技术文章 > Springboot如何上传图片文件

newRyan 2020-05-02 10:27 原文

步骤 1 : 可运行项目

首先下载一个简单的可运行项目作为演示:网盘链接https://www.90pan.com/b1869098

下载后解压,比如解压到 E:\project\springboot 目录下

步骤 2 : uploadPage.jsp

在 jsp 目录下新建 uploadPage.jsp,需要几点:

  1. method="post" 是必须的
  2. enctype="multipart/form-data" 是必须的,表示提交二进制文件
  3. name="file" 是必须的,和后续服务端对应
  4. accept="image/*" 表示只选择图片
<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
 
<form action="upload" method="post" enctype="multipart/form-data">
  选择图片:<input type="file" name="file" accept="image/*" /> <br>
  <input type="submit" value="上传">
</form>

步骤 3 : showImg.jsp

在 jsp 目录下新建 showImg.jsp ,用来显示上传的图片

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
    
<img src="/uploaded/${fileName}">

步骤 4 : UploadController.java

因为 uploadPage.jsp 在 WEB-INF 下,不能直接从浏览器访问,所以要在这里加一个 uploadPage 跳转,这样就可以通过

http://127.0.0.1:8080/uploadPage

访问到uploadPage.jsp了

package com.ryan.springboot.web;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.IOException;
 
import javax.servlet.http.HttpServletRequest;
 
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.multipart.MultipartFile;
  
@Controller
public class UploadController {
  
    @RequestMapping("/uploadPage")
    public String uploadPage() {
        return "uploadPage";
    }
 
}

步骤 5 : UploadController.java

为 UploadController.java 新增 upload 用来接受上传

  1. 接受上传的文件
@RequestParam("file") MultipartFile file
  1. 根据时间戳创建新的文件名,这样即便是第二次上传相同名称的文件,也不会把第一次的文件覆盖了
String fileName = System.currentTimeMillis()+file.getOriginalFilename();
  1. 通过 req.getServletContext().getRealPath("") 获取当前项目的真实路径,然后拼接前面的文件名
String destFileName = req.getServletContext().getRealPath("") + "uploaded" + File.separator+fileName;
  1. 第一次运行的时候,这个文件所在的目录往往是不存在的,这里需要创建一下目录
File destFile = new File(destFileName);
destFile.getParentFile().mkdirs();
  1. 把浏览器上传的文件复制到希望的位置
file.transferTo(destFile);
  1. 把文件名放在model里,以便后续显示用
m.addAttribute("fileName",fileName);

完整 UploadController.java 类:

package com.ryan.springboot.web;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.IOException;
 
import javax.servlet.http.HttpServletRequest;
 
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.multipart.MultipartFile;
  
@Controller
public class UploadController {
  
    @RequestMapping("/uploadPage")
    public String uploadPage() {
        return "uploadPage";
    }
    @RequestMapping(value = "/upload", method = RequestMethod.POST)
    public String upload(HttpServletRequest req, @RequestParam("file") MultipartFile file,Model m) {
        try {
            String fileName = System.currentTimeMillis()+file.getOriginalFilename();
            String destFileName=req.getServletContext().getRealPath("")+"uploaded"+File.separator+fileName;
             
            File destFile = new File(destFileName);
            destFile.getParentFile().mkdirs();
            file.transferTo(destFile);
             
            m.addAttribute("fileName",fileName);
        } catch (FileNotFoundException e) {
            e.printStackTrace();
            return "上传失败," + e.getMessage();
        } catch (IOException e) {
            e.printStackTrace();
            return "上传失败," + e.getMessage();
        }
         
        return "showImg";
    }  
}

步骤 6 : application.properties

设置上传文件的大小,默认是1m,太小了,文件稍微大一点就会出错

spring.mvc.view.prefix=/WEB-INF/jsp/
spring.mvc.view.suffix=.jsp
spring.http.multipart.maxFileSize=100Mb
spring.http.multipart.maxRequestSize=100Mb

步骤 7 : 测试

访问测试地址:

http://127.0.0.1:8080/uploadPage

: 启动方式是 Springboot 特有的,直接运行类:com.ryan.springboot.Application 的主方法。
观察到如图所示的效果

更多关于 Springboot文件上传 详细内容,点击学习: http://t.cn/A62YIFn0

推荐阅读