搜尋
首頁Javajava教程如何使springboot上傳文件

   由於對高大上的前端處理不太熟悉,想直接透過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中文網其他相關文章!

陳述
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
如何將Maven或Gradle用於高級Java項目管理,構建自動化和依賴性解決方案?如何將Maven或Gradle用於高級Java項目管理,構建自動化和依賴性解決方案?Mar 17, 2025 pm 05:46 PM

本文討論了使用Maven和Gradle進行Java項目管理,構建自動化和依賴性解決方案,以比較其方法和優化策略。

如何使用適當的版本控制和依賴項管理創建和使用自定義Java庫(JAR文件)?如何使用適當的版本控制和依賴項管理創建和使用自定義Java庫(JAR文件)?Mar 17, 2025 pm 05:45 PM

本文使用Maven和Gradle之類的工具討論了具有適當的版本控制和依賴關係管理的自定義Java庫(JAR文件)的創建和使用。

如何使用咖啡因或Guava Cache等庫在Java應用程序中實現多層緩存?如何使用咖啡因或Guava Cache等庫在Java應用程序中實現多層緩存?Mar 17, 2025 pm 05:44 PM

本文討論了使用咖啡因和Guava緩存在Java中實施多層緩存以提高應用程序性能。它涵蓋設置,集成和績效優勢,以及配置和驅逐政策管理最佳PRA

如何將JPA(Java持久性API)用於具有高級功能(例如緩存和懶惰加載)的對象相關映射?如何將JPA(Java持久性API)用於具有高級功能(例如緩存和懶惰加載)的對象相關映射?Mar 17, 2025 pm 05:43 PM

本文討論了使用JPA進行對象相關映射,並具有高級功能,例如緩存和懶惰加載。它涵蓋了設置,實體映射和優化性能的最佳實踐,同時突出潛在的陷阱。[159個字符]

Java的類負載機制如何起作用,包括不同的類載荷及其委託模型?Java的類負載機制如何起作用,包括不同的類載荷及其委託模型?Mar 17, 2025 pm 05:35 PM

Java的類上載涉及使用帶有引導,擴展程序和應用程序類負載器的分層系統加載,鏈接和初始化類。父代授權模型確保首先加載核心類別,從而影響自定義類LOA

See all articles

熱AI工具

Undresser.AI Undress

Undresser.AI Undress

人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover

AI Clothes Remover

用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool

Undress AI Tool

免費脫衣圖片

Clothoff.io

Clothoff.io

AI脫衣器

AI Hentai Generator

AI Hentai Generator

免費產生 AI 無盡。

熱門文章

R.E.P.O.能量晶體解釋及其做什麼(黃色晶體)
4 週前By尊渡假赌尊渡假赌尊渡假赌
R.E.P.O.最佳圖形設置
4 週前By尊渡假赌尊渡假赌尊渡假赌
R.E.P.O.如果您聽不到任何人,如何修復音頻
4 週前By尊渡假赌尊渡假赌尊渡假赌
WWE 2K25:如何解鎖Myrise中的所有內容
1 個月前By尊渡假赌尊渡假赌尊渡假赌

熱工具

SublimeText3漢化版

SublimeText3漢化版

中文版,非常好用

Atom編輯器mac版下載

Atom編輯器mac版下載

最受歡迎的的開源編輯器

VSCode Windows 64位元 下載

VSCode Windows 64位元 下載

微軟推出的免費、功能強大的一款IDE編輯器

禪工作室 13.0.1

禪工作室 13.0.1

強大的PHP整合開發環境

DVWA

DVWA

Damn Vulnerable Web App (DVWA) 是一個PHP/MySQL的Web應用程序,非常容易受到攻擊。它的主要目標是成為安全專業人員在合法環境中測試自己的技能和工具的輔助工具,幫助Web開發人員更好地理解保護網路應用程式的過程,並幫助教師/學生在課堂環境中教授/學習Web應用程式安全性。 DVWA的目標是透過簡單直接的介面練習一些最常見的Web漏洞,難度各不相同。請注意,該軟體中