Spring Boot | Spring Boot中进行 “文件上传” 和 “文件下载”

目录:

    • 一、SpringBoot中进行 " 文件上传" :
      • 1.编写 "文件上传" 的 “表单页面”
      • 2.在全局配置文件中添加文件上传的相关配置
      • 3.进行文件上传处理,实现 "文件上传" 功能
      • 4.效果测试
    • 二、SpringBoot中进行 "文件下载" :
      • “英文名称” 文件下载 :
        • 1.添加文件下载工具依赖
        • 2.定制文件下载页面
        • 3.编写文件下载处理方法
        • 4.效果测试
      • “中文名称” 文件下载 :
        • 1.添加文件下载工具依赖
        • 2.定制文件下载页面
        • 3.编写文件下载处理方法
        • 4.效果测试

在这里插入图片描述

作者简介 :一只大皮卡丘,计算机专业学生,正在努力学习、努力敲代码中! 让我们一起继续努力学习!

该文章参考学习教材为:
《Spring Boot企业级开发教程》 黑马程序员 / 编著
文章以课本知识点 + 代码为主线,结合自己看书学习过程中的理解和感悟 ,最终成就了该文章

文章用于本人学习使用 , 同时希望能帮助大家。
欢迎大家点赞👍 收藏⭐ 关注💖哦!!!

(侵权可联系我,进行删除,如果雷同,纯属巧合)


一、SpringBoot中进行 " 文件上传" :

  • 开发Wb应用时,文件上传是很常见的一个需求浏览器 通过 表单形式文件流的形式传递服务器服务器再对上传的数据解析处理。下面将通过一个案例讲解使用 SpringBoot 实现 文件上传具体步骤 如下 :

1.编写 “文件上传” 的 “表单页面”

  • 项目templates模板引擎文件夹下创建一个用来上传文件upload.html模板页面 :

  • upload.html :

    <!DOCTYPE html>
    <html lang="en" xmlns:th="http://www.thymeleaf.org">
    <head>
        <meta charset="UTF-8">
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
        <title>动态添加文件上传列表</title>
        <link th:href="@{/login/css/bootstrap.min.css}" rel="stylesheet">
        <script th:src="@{/login/js/jquery-3.7.1.min.js}"></script>
    </head>
    <body>
    <div th:if="${uploadStatus}" style="color: red" th:text="${uploadStatus}">
        上传成功</div>
    <form th:action="@{/uploadFile}" method="post" enctype="multipart/form-data">
        上传文件:&nbsp;&nbsp;
        <input type="button" value="添加文件" onclick="add()"/>
        <div id="file" style="margin-top: 10px;" th:value="文件上传区域">  </div>
        <input id="submit" type="submit" value="上传"
               style="display: none;margin-top: 10px;"/>
    </form>
    
    
    <script type="text/javascript">
        function add(){
            var innerdiv = "<div>";
            innerdiv += "<input type='file' name='fileUpload' required='required'>" +
                "<input type='button' value='删除' οnclick='remove(this)'>";
            innerdiv +="</div>";
            $("#file").append(innerdiv);
            $("#submit").css("display","block");
        }
    
        function remove(obj) {
            $(obj).parent().remove();
            if($("#file div").length ==0){
                $("#submit").css("display","none");
            }
        }
    </script>
    </body>
    </html>
    

2.在全局配置文件中添加文件上传的相关配置

  • 全局配置文件 : application.properties中添加文件上传相关设置配置如下

    application.properties :

    spring.application.name=chapter_12
    
    #thymeleaf的页面缓存设置(默认为true),开发中为方便调试应设置为false,上线稳定后应保持默认true
    spring.thymeleaf.cache=false
    
    ##配置国际化文件基础名
    #spring.messages.basename=i18n.login
    
    #单个文件上传大小限制(默认为1MB)
    spring.servlet.multipart.max-file-size=10MB
    #总文件上传大小限制
    spring.servlet.multipart.max-request-size=50MB
    

    application.properties 全局配置文件中,对文件 上传过程中上传大小进行了设置

3.进行文件上传处理,实现 “文件上传” 功能

  • FileController.java :

    package com.myh.chapter_12.controller;
    
    import org.springframework.boot.Banner;
    import org.springframework.stereotype.Controller;
    import org.springframework.ui.Model;
    import org.springframework.web.bind.annotation.GetMapping;
    import org.springframework.web.bind.annotation.PostMapping;
    import org.springframework.web.multipart.MultipartFile;
    
    import java.io.File;
    import java.io.IOException;
    import java.util.UUID;
    
    /**
     * 文件管理控制类
     */
    @Controller //加入到IOC容器中
    public class FileController { //关于File的controller类
    
        @GetMapping("/toUpload")
        public String toUpload(){
            return "upload";
        }
    
        @PostMapping("/uploadFile")
        public String uploadFile(MultipartFile[] fileUpload, Model model) {
            //默认文件上传成功,并返回状态信息
            model.addAttribute("uploadStatus", "上传成功!");
            for (MultipartFile file : fileUpload) {
                //获取文件名以及后缀名 (获取原始文件名)
                String fileName = file.getOriginalFilename();
                //使用UUID + 原始文件名 来生成一个新的文件名
                fileName = UUID.randomUUID()+"_"+fileName;
                //指定文件上传的本地存储目录,不存在则提前创建
                String dirPath = "S:\\File\\";
                File filePath = new File(dirPath);
                if(!filePath.exists()){filePath.mkdirs();}//创建该目录
                try {
                    //执行“文件上传”的方法
                    file.transferTo(new File(dirPath+fileName));
                }
                catch (Exception e) {e.printStackTrace();
                    //上传失败,返回失败信息
                    model.addAttribute("uploadStatus","上传失败: "+e.getMessage());}
            }
    
            //携带状态信息回调到文件上传页面
            return "upload";
        }
    }
    

4.效果测试

  • 启动项目,在浏览器访问 http://localhost:8080/toUpload ,效果如下图所示

    在这里插入图片描述


    在这里插入图片描述


    在这里插入图片描述

    通过以上图片可以看出SpringBoot 中进行 “文件上传”成功

二、SpringBoot中进行 “文件下载” :

  • 下载文件能够通过IO流实现,所以 多数框架并没有对文件下载进行封装处理文件下载涉及不同浏览器的解析处理,可能会出现 中文乱码 的情况。
    接下来将针对 下载英文名文件中文名文件 进行讲解。

“英文名称” 文件下载 :

1.添加文件下载工具依赖
  • pom.xml文件中引入文件下载的一个工具依赖

    <!--  文件下载的工具依赖  --> 
    <dependency>
        <groupId>commons-io</groupId>
        <artifactId>commons-io</artifactId>
        <version>2.6</version>
    </dependency>
    
2.定制文件下载页面
  • download.html :

    <!DOCTYPE html>
    <html lang="en" xmlns:th="http://www.thymeleaf.org">
    <head>
        <meta charset="UTF-8">
        <title>"英文名称"文件下载</title></head><body>
    <div style="margin-bottom: 10px">文件下载列表:</div>
    <table>
    
        <tr>
            <td>嘻嘻哈哈123.txt</td>
            <td><a th:href="@{/download(filename='5afa8ee7-6cbf-4632-9965-4df31aad4558_嘻嘻哈哈123456.txt')}">下载该文件</a></td>
        </tr>
    
        <tr>
            <td>嘻嘻哈哈123456.txt</td>
            <td><a th:href="@{/download(filename='c53a27b1-b42e-41a4-b283-86ac43034203_嘻嘻哈哈123.txt')}">下载该文件</a></td>
        </tr>
    
    </table>
    </body>
    </html>
    

    上面代码中通过列表展示了要下载的两个 文件名及其下载链接。需要注意的是,在文件下载之前,需要保证文件下载目录(本示例中的“S:\File”目录)中存在对应的文件,可以自行存放,只要 保持文件名统一 即可。

3.编写文件下载处理方法
  • FileController.java :

    package com.myh.chapter_12.controller;
    
    import jakarta.servlet.http.HttpServletRequest;
    import org.apache.commons.io.FileUtils;
    import org.springframework.boot.Banner;
    import org.springframework.http.HttpHeaders;
    import org.springframework.http.HttpStatus;
    import org.springframework.http.MediaType;
    import org.springframework.http.ResponseEntity;
    import org.springframework.stereotype.Controller;
    import org.springframework.ui.Model;
    import org.springframework.web.bind.annotation.GetMapping;
    import org.springframework.web.bind.annotation.PostMapping;
    import org.springframework.web.multipart.MultipartFile;
    
    import java.io.File;
    import java.io.IOException;
    import java.net.URLEncoder;
    import java.util.UUID;
    
    /**
     * 文件管理控制类
     */
    @Controller //加入到IOC容器中
    public class FileController { //关于File的controller类
    
        @GetMapping("/toDownload")
        public String toDownload(){
            return "download";
        }
    
        /**
         *  英文名称文件下载
         */
        @GetMapping("/download")
        public ResponseEntity<byte[]> fileDownload(String filename){
            //指定要下载的文件根路径
            String dirPath = "S:\\File\\";
            //创建该文件对象
            File file = new File(dirPath + File.separator + filename);
            //设置响应头
            HttpHeaders headers = new HttpHeaders();
            //通知浏览器以下载方式打开
            headers.setContentDispositionFormData("attachment",filename);
            //定义以流的形式下载返回文件数据
            headers.setContentType(MediaType.APPLICATION_OCTET_STREAM);
            try {return new ResponseEntity<>(FileUtils.readFileToByteArray(file),
                    headers, HttpStatus.OK);}
            catch (Exception e) {e.printStackTrace();
                return new ResponseEntity<byte[]>(e.getMessage().getBytes(),
                        HttpStatus.EXPECTATION_FAILED);
            }
        }
    
    }
    
4.效果测试
  • 启动项目,在浏览器访问 http://localhost:8080/toDownload ,效果如下图所示
    在这里插入图片描述


    在这里插入图片描述

“中文名称” 文件下载 :

1.添加文件下载工具依赖
  • pom.xml文件中引入文件下载的一个工具依赖

    <!--  文件下载的工具依赖  --> 
    <dependency>
        <groupId>commons-io</groupId>
        <artifactId>commons-io</artifactId>
        <version>2.6</version>
    </dependency>
    
2.定制文件下载页面
  • download.html :

    <!DOCTYPE html>
    <html lang="en" xmlns:th="http://www.thymeleaf.org">
    <head>
        <meta charset="UTF-8">
        <title>中文名称文件下载</title></head><body>
    <div style="margin-bottom: 10px">文件下载列表:</div>
    <table>
    
        <tr>
            <td>嘻嘻哈哈123456.txt</td>
            <td><a th:href="@{/download(filename='708ebc14-2ca7-4b66-b0bf-3b9c65df6ec1_嘻嘻哈哈123456.txt')}">下载该文件</a></td>
        </tr>
    
        <tr>
            <td>嘻嘻哈哈123.txt</td>
            <td><a th:href="@{/download(filename='418b0e77-59dc-4697-8a62-6a450d466567_嘻嘻哈哈123.txt')}">下载该文件</a></td>
        </tr>
    
    </table>
    </body>
    </html>
    
    

    上面代码中通过列表展示了要下载的两个 文件名及其下载链接。需要注意的是,在文件下载之前,需要保证文件下载目录(本示例中的“S:\File”目录)中存在对应的文件,可以自行存放,只要 保持文件名统一 即可。

3.编写文件下载处理方法
  • FileController.java :

    package com.myh.chapter_12.controller;
    
    import jakarta.servlet.http.HttpServletRequest;
    import org.apache.commons.io.FileUtils;
    import org.springframework.boot.Banner;
    import org.springframework.http.HttpHeaders;
    import org.springframework.http.HttpStatus;
    import org.springframework.http.MediaType;
    import org.springframework.http.ResponseEntity;
    import org.springframework.stereotype.Controller;
    import org.springframework.ui.Model;
    import org.springframework.web.bind.annotation.GetMapping;
    import org.springframework.web.bind.annotation.PostMapping;
    import org.springframework.web.multipart.MultipartFile;
    
    import java.io.File;
    import java.io.IOException;
    import java.net.URLEncoder;
    import java.util.UUID;
    
    /**
     * 文件管理控制类
     */
    @Controller //加入到IOC容器中
    public class FileController { //关于File的controller类
        
        @GetMapping("/toDownload")
        public String toDownload(){
            return "download";
        }
    
        /**
         *  "中文名称"文件下载
         */
        @GetMapping("/download")
        public ResponseEntity<byte[]> fileDownload(HttpServletRequest request,String filename) throws Exception{
            //指定下载的文件根路径
            String dirPath = "S:\\File\\";
            //创建该文件对象
            File file = new File(dirPath + File.separator + filename);
            //设置响应头
            HttpHeaders headers = new HttpHeaders();
            //通知浏览器以下载方式打开(下载前对文件名进行转码)
            filename=getFilename(request,filename);
            headers.setContentDispositionFormData("attachment",filename);
            //定义以流的形式下载返回文件数据
            headers.setContentType(MediaType.APPLICATION_OCTET_STREAM);
            try {return new ResponseEntity<>(FileUtils.readFileToByteArray(file),
                    headers, HttpStatus.OK);} catch (Exception e) {e.printStackTrace();
                return new ResponseEntity<byte[]>(e.getMessage().getBytes(),
                        HttpStatus.EXPECTATION_FAILED);
            }
        }
    
       //根据浏览器的不同进行编码设置,返回编码后的文件名
        private String getFilename(HttpServletRequest request,String filename)
                throws Exception {
            //IE不同版本User-Agent中出现的关键词
            String[] IEBrowserKeyWords = {"MSIE", "Trident", "Edge"};
            //获取请求头代理信息
            String userAgent = request.getHeader("User-Agent");
            for (String keyWord : IEBrowserKeyWords) {
                if (userAgent.contains(keyWord)) {
                    //IE内核浏览器,统一为UTF-8编码显示,并对转换的+进行更正
                    return URLEncoder.encode(filename, "UTF-8").replace("+"," ");
                }}
            //火狐等其他浏览器统一为ISO-8859-1编码显示
            return new String(filename.getBytes("UTF-8"), "ISO-8859-1");
        }
    
    
    }
    
4.效果测试
  • 启动项目,在浏览器访问 http://localhost:8080/toDownload ,效果如下图所示

    在这里插入图片描述


    在这里插入图片描述

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:/a/544226.html

如若内容造成侵权/违法违规/事实不符,请联系我们进行投诉反馈qq邮箱809451989@qq.com,一经查实,立即删除!

相关文章

【opencv】示例-stereo_match.cpp 立体匹配:通过对左右视图图像进行处理来生成视差图和点云数据...

/** stereo_match.cpp* calibration** 创建者 Victor Eruhimov&#xff0c;日期为 2010年1月18日。* 版权所有 2010 Argus Corp.**/#include "opencv2/calib3d/calib3d.hpp" // 导入OpenCV相机标定和三维重建相关的头文件 #include "opencv2/imgproc.hpp&qu…

stm32移植嵌入式数据库FlashDB

本次实验的程序链接stm32f103FlashDB嵌入式数据库程序资源-CSDN文库 一、介绍 FlashDB 是一款超轻量级的嵌入式数据库&#xff0c;专注于提供嵌入式产品的数据存储方案。与传统的基于文件系统的数据库不同&#xff0c;FlashDB 结合了 Flash 的特性&#xff0c;具有较强的性能…

【GD32】INA226电压电流功率检测模块

2.46 INA226电压电流功率检测模块 2.46.1 模块来源​ 采购链接&#xff1a;​ INA226电压电流功率检测模块 资料下载&#xff1a;&#xff08;基于该模块的资料&#xff0c;百度云链接等&#xff09;​ 链接&#xff1a;http://pan.baidu.com/s/1c0DbuXa 密码&#xff1a;3p2…

开源版中文和越南语贷款源码贷款平台下载 小额贷款系统 贷款源码运营版

后台 代理 前端均为vue源码&#xff0c;前端有中文和越南语 前端ui黄色大气&#xff0c;逻辑操作简单&#xff0c;注册可对接国际短信&#xff0c;可不对接 用户注册进去填写资料&#xff0c;后台审批&#xff0c;审批状态可自定义修改文字显示 源码免费下载地址抄笔记 (chaob…

Abstract Factory抽象工厂模式详解

模式定义 提供一个创建一系列相关或互相依赖对象的接口&#xff0c;而无需指定它们具体的类。 代码示例 public class AbstractFactoryTest {public static void main(String[] args) {IDatabaseUtils iDatabaseUtils new OracleDataBaseUtils();IConnection connection …

架构师系列-搜索引擎ElasticSearch(六)- 映射

映射配置 在创建索引时&#xff0c;可以预先定义字段的类型&#xff08;映射类型&#xff09;及相关属性。 数据库建表的时候&#xff0c;我们DDL依据一般都会指定每个字段的存储类型&#xff0c;例如&#xff1a;varchar、int、datetime等&#xff0c;目的很明确&#xff0c;就…

oarcle 19c ADG补丁升级(19.3-19.22)

一、备库操作 1.关闭备库数据库实例 sqlplus / as sysdba startup shutdown immediate # 查看oracle进程 ps -ef | grep sqlplus 2.关闭监听 lsnrctl start lsnrctl stop lsnrctl status 3.升级Opatch # 备份当前Opatch目录 su - oracle cd $ORACLE_HOME mv OPatch OPat…

康耐视visionpro-CogFindLineTool操作工具详细说明

◆CogFindeLineTool功能说明: 检测图像的直线边缘,实现边缘的定位、测量。 ◆CogFindeLineTool操作说明: ①.打开工具栏,双击或点击鼠标拖拽添加CogFindLineTool工具 ②.添加输入图像,点击鼠标右键“链接到”选择输入图像或以连线拖拽的方式选择相应输入图像 ③.所选空间…

Git-常规用法-含解决分支版本冲突解决方法

前置条件 已经创建了Gitee账号 创建一个远程仓库 个人主页-新建一个仓库-起好仓库名字-简介 远程仓库地址 Git的优点 Git是一个开源的分布式版本控制系统&#xff0c;可以有效、高速地处理从很小到非常大的项目版本管理。于2005年以GPL发布。采用了分布式版本库的做法&…

深入探索 RabbitMQ:功能丰富的消息中间件一

在现代分布式系统的构建中&#xff0c;消息中间件扮演着至关重要的角色。作为这一领域的佼佼者&#xff0c;RabbitMQ以其独特的特性和强大的功能&#xff0c;为应用程序提供了高效可靠的消息传递解决方案。以下是对RabbitMQ及其显著特点的更详细探讨。 什么是 RabbitMQ&#x…

考试酷基本功修炼课学习历程_FPGA成长篇

本文为明德扬原创文章&#xff0c;转载请注明出处&#xff01;作者&#xff1a;明德扬学员&#xff1a;考试酷账号&#xff1a;11167760 我是硬件工程师&#xff0c;日常工作中主要跟数字电路、模拟电路、嵌入式系统打交道&#xff0c;当然也会涉及到FPGA&#xff0c;但是苦于…

【Vue】新手一步一步安装 vue 语言开发环境

文章目录 1、下载node.js安装包 1、下载node.js安装包 1.打开node.js的官网下载地址&#xff1a;http://nodejs.cn/download/ 选择适合自己系统的安装包&#xff1a;winds、mac 2. 配置node.js和npm环境变量 安装好之后&#xff0c;对npm安装的全局模块所在路径以及缓存所在路…

05.MySQL索引事务

1. 索引 1.1 概念 索引是一种特殊的文件&#xff0c;包含着对数据表里所有记录的引用指针。 可以对表中的一列或多列创建索引&#xff0c;并指定索引的类型&#xff0c;各类索引有各自的数据结构实现 1.2 作用 数据库中的表、数据、索引之间的关系&#xff0c;类似于书架上的…

C++ - 面向对象(二)

一. 类的6个默认成员函数 在我们前面学习的类中&#xff0c;我们会定义成员变量和成员函数&#xff0c;这些我们自己定义的函数都是普通的成员函数&#xff0c;但是如若我们定义的类里什么也没有呢&#xff1f;是真的里面啥也没吗&#xff1f;如下 class Date {}; 如果一个类…

架构师系列-搜索引擎ElasticSearch(七)- 集群管理之分片

集群健康检查 Elasticsearch 的集群监控信息中包含了许多的统计数据&#xff0c;其中最为重要的一项就是集群健康&#xff0c;它在 status字段中展示为 green&#xff08;所有主分片和副本分片都正常&#xff09;、yellow&#xff08;所有数据可用&#xff0c;有些副本分片尚未…

EEG-GCNN 论文问题整理

auc是什么&#xff1f; AUC是指接收者操作特征曲线&#xff08;ROC曲线&#xff09;下的面积&#xff0c;用于评估分类模型的性能。AUC的取值范围在0到1之间&#xff0c;越接近1表示模型的性能越好&#xff0c;越接近0.5表示模型的性能越差。AUC的计算方法是通过计算ROC曲线下…

Kafka分布式数据处理平台

目录 一.消息队列基本介绍 1.为什么需要消息队列 2.使用消息队列的好处 2.1 解耦 耦合&#xff08;非解耦&#xff09; 解耦 2.2 可恢复性 2.3 缓冲 2.4 灵活性 & 峰值处理能力 2.5 异步通信 3.消息队列的两种模式 3.1 点对点模式 3.2 发布/订阅模式 二.Kafk…

【脚本】多功能Ubuntu临时授予用户sudo权限管理工具

转载请注明出处&#xff1a;小锋学长生活大爆炸[xfxuezhagn.cn] 设计原理和初衷可以看这里&#xff1a;【技巧】Ubuntu临时授予用户sudo权限&#xff0c;并在一定时间后自动撤销_ubuntu jianshao sudo-CSDN博客文章浏览阅读404次。非常实用_ubuntu jianshao sudohttps://blog.c…

# 达梦sql查询 Sql 优化

达梦sql查询 Sql 优化 文章目录 达梦sql查询 Sql 优化注意点测试数据单表查询 Sort 语句优化优化过程 多表关联SORT 优化函数索引的使用 注意点 关于优化过程中工具的选用&#xff0c;推荐使用自带的DM Manage&#xff0c;其它工具在查看执行计划等时候不明确在执行计划中命中…

Echarts简单的多表联动效果和添加水印和按钮切换数据效果

多表联动 多表联动效果指的是在多个表格之间建立一种交互关系&#xff0c;以便它们之间的操作或选择能够相互影响。通常情况下&#xff0c;多表联动效果可以通过以下方式之一实现&#xff1a; 数据关联&#xff1a; 当在一个表格中选择或操作某些数据时&#xff0c;另一个表格…