五.SpringBoot文件上传

2019-03-25  本文已影响0人  A_x_A

三种上传方式

  • 直接上传到应用服务器
  • 云储存---上传到OSS(阿里云)、七牛云
  • 前端将图片转成Base64编码上传(适用于小容量)

1.上传到应用服务器

upload模块建立.png
检查路径是否匹配,等待项目建立
upload模块建立.png
#文件上传的配置
spring.servlet.multipart.max-file-size=100MB

package com.springboot.upload.controller;

import org.springframework.stereotype.Controller;
import org.springframework.util.ResourceUtils;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.multipart.MultipartFile;
import org.springframework.web.servlet.mvc.support.RedirectAttributes;

import java.io.File;
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.UUID;

/**
 * 上传文件控制器
 * 直接上传到服务器
 * @author 旺
 * 2019.3.25
 */
@Controller
public class UploadController {
    //指定一个临时路径作为上传目录
//    private static String UPLOAD_FOLDER = "E:/temp/";

    //遇到http://localhost:8080,则跳转到upload.html页面
    SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd");
    @GetMapping("/")
    public String index(){
        return  "upload";
    }

    @PostMapping("/upload")
    public String fileUpload(@RequestParam("file")MultipartFile srcFile, RedirectAttributes redirectAttributes){
        //前端没有选择文件,srcFile为空
        if (srcFile.isEmpty()){
            redirectAttributes.addFlashAttribute("message","请选择一个文件");
            return "redirect:upload_status";
        }
        //选择了文件,开始进行上传操作
        try {
            String fileName= srcFile.getOriginalFilename();
            String suffixName = fileName.substring(fileName.lastIndexOf("."));
            fileName= UUID.randomUUID() +suffixName;
            //构建上传目标路径,
            File destFile=new File
                    (ResourceUtils.getURL("classpath:").getPath());
            if(!destFile.exists()){
                destFile=new File("");
            }
            //出处目标文件的绝对路径
            System.out.println("file path"+destFile.getAbsolutePath());
            File upload=new File(destFile.getAbsolutePath(),df.format(new Date())+"/");


            //若目标文件夹不存在,则创建一个
            if(!upload.exists()){
                upload.mkdir();
            }
            System.out.println("完整的上传路径:"+upload.getAbsolutePath()+"/"+fileName);

            //根据srcFile的大小,准备一个字节数组
            byte[] bytes = srcFile.getBytes();
            //拼接上传路径
            Path path = Paths.get(upload.getAbsolutePath()+"/"+fileName);
            //最重要的一步,将源文件写入目标地址
            Files.write(path , bytes);
            //将文件上传成功的信息写入message
            redirectAttributes.addFlashAttribute("message","文件上传成功!"+fileName);
        }catch (IOException e){
            e.printStackTrace();
        }
        return "redirect:upload_status";
    }


    //匹配upload_status页面
    @GetMapping("/upload_status")
    public String uploadStatusPage(){
        return "upload_status";
    }
}
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Spring Boot文件上传页面</title>
</head>
<body>
<form method="post" action="/upload" enctype="multipart/form-data">
    <input type="file" name="file">
    <input type="submit" value="上传">
</form>
</body>
</html>
<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head>
    <meta charset="UTF-8">
    <title>文件上传状态显示</title>
</head>
<body>
<h2>Spring Boot的文件上传状态</h2>
<div th:if="${message}">
    <h2 th:text="${message}"/>
</div>
</body>
</html>
上一篇下一篇

猜你喜欢

热点阅读