登录  /  注册
首页 > Java > java教程 > 正文

如何使springboot上传文件

坏嘻嘻
发布: 2018-09-14 16:22:26
原创
3517人浏览过

   由于对高大上的前端处理不太熟悉,想直接通过MVC的方式进行内容传递,因此选用了Thymeleaf模版处理向前端传值的问题。

  1. application.properties文件

#访问超市时间的设置ribbon.
ConnectTimeout=60000ribbon.
ReadTimeout=60000
# 开启多文件上传
spring.servlet.multipart.
enabled=true 
spring.servlet.multipart.file-size-threshold =0
#单个文件大小
#spring.http.multipart.maxFileSize=10MB
#设置总上传的数据大小
#spring.http.multipart.maxRequestSize=10MB
#升级到2.0后需要改成
#单个文件大小spring.servlet.
multipart.max-file-size=10Mb 
#设置总上传的数据大小 
spring.servlet.multipart.
max-request-size=10Mb
#上传路径upload_path=D:/file_statics
#下载路径download_path=D:/file_statics
登录后复制

2.controller代码

import java.io.
BufferedInputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.OutputStream;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.util.Arrays;
import java.util.List;
import java.util.stream.
Collectors;import javax.servlet.
http.HttpServletResponse;import org.
apache.commons.lang3.StringUtils;
import org.springframework.beans.
factory.annotation.Value;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.bind.annotation.
ResponseBody;import org.springframework.web.
bind.annotation.RestController;import org.
springframework.web.multipart.MultipartFile;
import org.springframework.web.servlet.
mvc.support.RedirectAttributes;import com.
vinord.common.model.ResultView;import com.
vinord.common.util.Constains;@RestController
public class FileUploadController
{
    @Value("${upload_path}")
    private final String upload_path ="D:/file_statics";

    @Value("${download_path}")
    private final String download_path ="D:/file_statics";

    /**
     * 单个文件上传
     * @param file
     * @param redirectAttributes
     * @return
     */
    @RequestMapping("uploadFile")
    public ResultView singleFileUpload(@RequestParam("file") 
    MultipartFile file,RedirectAttributes redirectAttributes) {
        ResultView result = new ResultView();
        if (file.isEmpty()) {
            redirectAttributes.addFlashAttribute("message", "请选择文件进行上传");
            result.setCode(Constains.STATUS_ZERO);
            result.setMsg("请选择文件进行上传!");
            return result;
        }

        try {
            byte[] bytes = file.getBytes();

            String filename = file.getOriginalFilename();
            String name = filename.substring(0,filename.lastIndexOf("."));
            String formatDate = System.currentTimeMillis()+"";
            int index = filename.indexOf(".");
            String savefilename = name + formatDate+ filename.substring(index);

            Path path = Paths.get(upload_path+ File.separator+savefilename);
            Files.write(path, bytes);

            redirectAttributes.addFlashAttribute("message","成功上传文件: '" + file.getOriginalFilename() + "'");

            result.setCode(Constains.STATUS_ONE);
            result.setMsg("上传成功");
        } catch (IOException e) {
            e.printStackTrace();
        }

        return result;
    }    /**
     * 多个文件上传
     * @param files
     * @return
     */
    @ResponseBody
    @RequestMapping(value = "/upload/batch", method = RequestMethod.POST)
    public ResultView batchUpload(@RequestParam("files")MultipartFile[] files) {
        ResultView result = new ResultView();

        String uploadedFileName = Arrays.stream(files).map(x -> x.getOriginalFilename())    
                    .filter(x -> !StringUtils.isEmpty(x)).collect(Collectors.joining(" , "));
        if (StringUtils.isEmpty(uploadedFileName)) {
            result.setCode(Constains.STATUS_ZERO);
            result.setMsg("文件上传失败,文件为空!");
            return result;
        }


        try {
            saveUploadedFiles(Arrays.asList(files));
        } catch (IOException e) {
            result.setCode(Constains.STATUS_ZERO);
            result.setMsg("文件上传异常"+e.getMessage());
            return result;
        }

        result.setCode(Constains.STATUS_ONE);
        result.setMsg("上传成功");
        return result;
    }


    private  void saveUploadedFiles(List<MultipartFile> files) throws IOException {
        for (MultipartFile file : files) {
            if (file.isEmpty()) {
                continue;
            }
            byte[] bytes = file.getBytes();

            String filename = file.getOriginalFilename();
            String name = filename.substring(0,filename.lastIndexOf("."));
            String formatDate = System.currentTimeMillis()+"";
            int index = filename.indexOf(".");
            String savefilename = name + formatDate+ filename.substring(index);

            Path path = Paths.get(upload_path+ File.separator+ savefilename);
            Files.write(path, bytes);
        }
    }    /**
     * 下载
     * @param res
     * @throws IOException
     */
    @RequestMapping("download")  
    public void download(HttpServletResponse res) throws IOException {

        String fileName = "CustomLogControl1536898060373.java";
        res.setHeader("content-type", "application/octet-stream");
        res.setContentType("application/octet-stream");
        res.setHeader("Content-Disposition", "attachment;filename=" + fileName);
        byte[] buff = new byte[1024];
        BufferedInputStream bis = null;
        OutputStream os = null;
        try {
            os = res.getOutputStream();
            bis = new BufferedInputStream(new FileInputStream(new File(download_path+ File.separator+fileName)));
            int i = bis.read(buff);
            while (i != -1) {
                os.write(buff, 0, buff.length);
                os.flush();
                i = bis.read(buff);
            }
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            if (bis != null) {
                try {
                    bis.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }
    }


}
登录后复制

   相关推荐:

SpringBoot+Thymeleaf实现html文件引入(类似include功能)_html/css_WEB-ITnose

优雅的使用mybatis

以上就是如何使springboot上传文件的详细内容,更多请关注php中文网其它相关文章!

智能AI问答
PHP中文网智能助手能迅速回答你的编程问题,提供实时的代码和解决方案,帮助你解决各种难题。不仅如此,它还能提供编程资源和学习指导,帮助你快速提升编程技能。无论你是初学者还是专业人士,AI智能助手都能成为你的可靠助手,助力你在编程领域取得更大的成就。
相关标签:
来源:php中文网
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 意见反馈 讲师合作 广告合作 最新更新
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习
PHP中文网抖音号
发现有趣的

Copyright 2014-2024 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号