基于SpringBoot实现SpringMvc上传下载功能实现

news2024/11/19 9:31:01

SpringMvc上传下载功能实现

1.创建新的项目

1)项目信息填写

  1. Spring Initializr (单击选中)
  2. Name(填写项目名字)
  3. Language(选择开发语言)
  4. Type(选择工具Maven)
  5. Group()
  6. JDK(jdk选择17 )
  7. Next(下一步)

2)选择所用的包

  1. Springboot (选择SpringBoot版本)
  2. 输入(web)
  3. 选择Spring Web
  4. 选择Thymeleaf
  5. create

3)创建controller包 

4)创建DownLoadController类

package com.xiji.springdemo01.controller;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;

@Controller
public class DownLoadController {
   

    @RequestMapping("/")
    public String index(){
        return "index";
    }


}

5)创建UpLoadController类

package com.xiji.springdemo01.controller;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;

/**
 * 文件上传功能
 */
@Controller
public class UpLoadController {

    

    @RequestMapping("/up")
    public String uploadPage(){
        return "upload";
    }
}

在resources文件的static创建img文件夹===》导入图片

打开templates文件夹

6)创建index.html

<!DOCTYPE html>
<html lang="zh">
<head>
  <meta charset="UTF-8">
  <title>精美主页面</title>
  <style>
    /* styles.css */
    body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      background-color: #f4f4f4;
    }

    header {
      background-color: #333;
      color: white;
      padding: 10px 0;
      text-align: center;
    }

    nav ul {
      list-style-type: none;
      padding: 0;
    }

    nav ul li {
      display: inline;
      margin-right: 10px;
    }

    nav ul li a {
      color: white;
      text-decoration: none;
    }

    main {
      padding: 20px;
      background-color: white;
      margin: 20px;
    }

    section {
      margin-bottom: 20px;
    }

    footer {
      background-color: #333;
      color: white;
      text-align: center;
      padding: 10px 0;
      position: fixed;
      width: 100%;
      bottom: 0;
    }

  </style>
</head>
<body>
<header>
  <nav>
    <ul>
      <li><a href="#home">首页</a></li>
      <li><a href="#services">服务</a></li>
      <li><a href="#about">关于我们</a></li>
      <li><a href="#contact">联系我们</a></li>
    </ul>
  </nav>
</header>
<main>


  <di style="width: 200px;height: 200px;">
    <a th:href="@{/download}">文件下载</a>
  </di>

</main>
<footer>
  <p>版权所有 © 2023 我们的公司</p>
</footer>
</body>
</html>



注:<a th:href="@{/download}">文件下载</a> 这个路径对应的是后端的下载接口

7)创建upload.html

<!DOCTYPE html>
<html lang="zh-CN" >
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>文件上传</title>
  <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css">
  <style>
    body {
      font-family: 'Arial', sans-serif;
      background-color: #f4f4f9;
      margin: 0;
      padding: 0;
    }
    .container {
      max-width: 600px;
      margin: 50px auto;
      padding: 20px;
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }
    h1 {
      text-align: center;
      color: #333;
    }
    .form-group {
      margin-bottom: 20px;
    }
    .btn-primary {
      width: 100%;
    }
    .custom-file-input ~ .custom-file-label {
      background-color: #e9ecef;
      border-color: #ced4da;
    }
    .custom-file-input:focus ~ .custom-file-label {
      border-color: #80bdff;
      box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    }
  </style>
</head>
<body>
<div class="container">
  <h1>文件上传</h1>
  <form id="uploadForm" method="post" action="http://127.0.0.1:8080/upload" enctype="multipart/form-data">
    <div class="form-group">
      <label for="fileInput">选择文件:</label>
      <input type="file" class="form-control-file" id="fileInput" name="fileInput">
    </div>
    <button type="submit" class="btn btn-primary">上传文件</button>
  </form>
</div>

<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
<script>

</script>
</body>
</html>j

注:<input type="file" class="form-control-file" id="fileInput" name="fileInput">

                                                                                        name值与接口值一致

解释

  1. form 元素创建了一个表单,其属性包括:
    1.  id 设置为 "uploadForm",可以在JavaScript中引用此表单。
    2. method 设置为 "post",表示数据将通过POST方法提交到服务器。
    3. action 指定了接收上传文件的服务器端脚本地址。
    4. enctype 设置为 "multipart/form-data",这是必须的,因为它允许表单发送二进制文件数据(如图片或文档)。       
  2. input 类型为 "file",允许用户从本地文件系统选择一个或多个文件进行上传。
  3. 最后,一个带有类 "btn btn-primary" 的按钮用于提交表单。

2.实现上传功能

1)关键代码

/**
 * 通过MultipartFile实现上传
 */
@RequestMapping("/upload")
@ResponseBody
public String upload(MultipartFile fileInput) throws IOException {


    PathMatchingResourcePatternResolver resolver = new PathMatchingResourcePatternResolver();

    //获取上传文件夹的路径资源
    Resource resource = resolver.getResource("classpath:static/img/");
    //获取文件夹真实路径
    String path = resource.getFile().getPath();
    //路径拼接
    String filePath = path + File.separator + fileInput.getOriginalFilename();
    //通过transferTo()方法返回给前端
    fileInput.transferTo(new File(filePath));
    return "上传成功";

}

2)详情解释

  • 注解说明:
    •  @RequestMapping("/upload"): 定义了处理 HTTP 请求的 URL 映射。
    • @ResponseBody: 表示该方法返回的内容将直接作为 HTTP 响应体返回给客户端。
  • 接收上传文件:
    • MultipartFile fileInput: 用于接收上传的文件。
  • 获取文件夹路径:
    • PathMatchingResourcePatternResolver resolver: 用于解析文件资源路径。
    • resolver.getResource("classpath:static/img/"): 获取指定路径下的文件夹资源。
    • String path = resource.getFile().getPath();: 获取文件夹的真实路径。
  • 拼接文件路径:
    • String filePath = path + File.separator + fileInput.getOriginalFilename();: 拼接完整的文件路径。
  • 保存文件:
    • fileInput.transferTo(new File(filePath));: 将上传的文件保存到指定路径。
  • 返回结果:
    • return "上传成功";: 返回上传成功的消息。

3)功能测试

打开 http://127.0.0.1:8080/up

http://127.0.0.1:8080/up

任选一张图片

打开idea ===> target ==> classes ===> static ==> img ==>看到已经成功上传到服务器

可以看到已经上传成功了

       

3.文件下载功能实现

1)关键代码

/**
 *
 * 通过PathMatchingResourcePatternResolver + ResponseEntity 下载文件
 */
@RequestMapping("/download")
@ResponseBody
public ResponseEntity<byte[]> download() throws IOException {
    //获取文件地址
    PathMatchingResourcePatternResolver resolver = new PathMatchingResourcePatternResolver();
    Resource resource = resolver.getResource("static/img/1.png");
                        ​​​​​​​        ​​​​​​​        ​​​​​​​        // 1.png修改为你导入的图片名称
    //获取文件
    File file = resource.getFile();


    //获取文件流
    FileInputStream fileInputStream = new FileInputStream(file);
    //创建每次读取的字节数为文件本身大小
    byte[] bytes = new byte[fileInputStream.available()];
    //相当于把文件流 输入到  bytes 字节数组中
    fileInputStream.read(bytes);

    //设置下载方式
    HttpHeaders httpHeaders = new HttpHeaders();
    httpHeaders.add("Content-Disposition", "attachment; filename=" + file.getName());
    //状态码设置
    HttpStatus ok = HttpStatus.OK;

   //创建ResponseEntity返回给前端

    ResponseEntity<byte[]> responseEntity = new ResponseEntity<>(bytes, httpHeaders, ok);


    return responseEntity;
}

2)详细解释

  • 注解说明:
    •  @RequestMapping("/download"): 定义了处理 HTTP 请求的 URL 映射。
    • @ResponseBody: 表示该方法返回的内容将直接作为 HTTP 响应体返回给客户端。
  • 文件资源解析:
    • PathMatchingResourcePatternResolver: 用于解析文件资源路径。
    •  getResource("static/img/1.png"): 获取指定路径下的文件资源。
  • 文件对象获取:
    • File file = resource.getFile();: 将资源转换为 File 对象。
  • 设置响应头:
    •  HttpHeaders httpHeaders: 创建响应头对象。
    •  httpHeaders.add("Content-Disposition", "attachment; filename=" + file.getName()): 设置响应头,指定文件以附件形式下载,并设置文件名。
  • 状态码设置:
    • HttpStatus ok = HttpStatus.OK: 设置 HTTP 状态码为 200 OK。
  • 读取文件内容:
    •  FileInputStream fileInputStream = new FileInputStream(file);: 创建文件输入流。
    • byte[] bytes = new byte[fileInputStream.available()];: 创建字节数组。
    •  fileInputStream.read(bytes);: 读取文件内容到字节数组中。
  • 创建响应实体:
    •  ResponseEntity<byte[]> responseEntity = new ResponseEntity<>(bytes, httpHeaders, ok);:
    • 创建 ResponseEntity 对象,包含文件内容、响应头和状态码。
  • 返回响应:
    • return responseEntity;: 返回响应实体。

3)功能测试

打开网址 打开网址打开网址  http://127.0.0.1:8080/打开网址 



        
       

可以看到我们已经下载成功了

4.附:

1)完整的DownLoadController 类代码

package com.xiji.springdemo01.controller;

import org.springframework.core.io.Resource;
import org.springframework.core.io.support.PathMatchingResourcePatternResolver;
import org.springframework.http.HttpHeaders;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;

import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;

@Controller
public class DownLoadController {
    /**
     *
     * 通过PathMatchingResourcePatternResolver + ResponseEntity 下载文件
     */
    @RequestMapping("/download")
    @ResponseBody
    public ResponseEntity<byte[]> download() throws IOException {
        //获取文件地址
        PathMatchingResourcePatternResolver resolver = new PathMatchingResourcePatternResolver();
        Resource resource = resolver.getResource("static/img/1.png");

        //获取文件
        File file = resource.getFile();


        //获取文件流
        FileInputStream fileInputStream = new FileInputStream(file);
        //创建每次读取的字节数为文件本身大小
        byte[] bytes = new byte[fileInputStream.available()];
        //相当于把文件流 输入到  bytes 字节数组中
        fileInputStream.read(bytes);

        //设置下载方式
        HttpHeaders httpHeaders = new HttpHeaders();
        httpHeaders.add("Content-Disposition", "attachment; filename=" + file.getName());
        //状态码设置
        HttpStatus ok = HttpStatus.OK;


        ResponseEntity<byte[]> responseEntity = new ResponseEntity<>(bytes, httpHeaders, ok);


        return responseEntity;
    }



    @RequestMapping("/")
    public String index(){
        return "index";
    }


}

2)完整的UpLoadController 代码

package com.xiji.springdemo01.controller;

import org.springframework.context.support.ClassPathXmlApplicationContext;
import org.springframework.core.io.Resource;
import org.springframework.core.io.support.PathMatchingResourcePatternResolver;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.multipart.MultipartFile;

import java.io.File;
import java.io.IOException;

/**
 * 文件上传功能
 */
@Controller
public class UpLoadController {

    /**
     * 通过MultipartFile实现上传
     */
    @RequestMapping("/upload")
    @ResponseBody
    public String upload(MultipartFile fileInput) throws IOException {


        PathMatchingResourcePatternResolver resolver = new PathMatchingResourcePatternResolver();

        Resource resource = resolver.getResource("classpath:static/img/");

        String path = resource.getFile().getPath();
        //路径拼接
        String filePath = path + File.separator + fileInput.getOriginalFilename();
        fileInput.transferTo(new File(filePath));
        return "上传成功";

    }

    @RequestMapping("/up")
    public String uploadPage(){
        return "upload";
    }
}



        

       
       



        

       
        
       

                

        

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

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈,一经查实,立即删除!

相关文章

深度学习——D1(环境配置)

课程内容 W-H-W 资源 AI地图 物体检测和分割 样式迁移 人脸合成 文字生成图片 预测与训练 本地安装

【IPV6从入门到起飞】5-2 IPV6+Home Assistant(ESP32+MQTT+DHT11+BH1750)传感器采集上传监测

IPV6Home Assistant[ESP32MQTTDHT11BH1750]传感器采集上传监测 1 背景2 实现效果3 Home Assistant配置3-1 MQTT配置3-2 yaml 配置3-3 加载配置 4 ESP32搭建4-1 开发环境4-2 工程代码 5 实现效果 1 背景 在上一小节【IPV6从入门到起飞】5-1 IPV6Home Assistant(搭建基本环境)我…

luogu基础课题单 入门 上

【深基2.例5】苹果采购 题目描述 现在需要采购一些苹果&#xff0c;每名同学都可以分到固定数量的苹果&#xff0c;并且已经知道了同学的数量&#xff0c;请问需要采购多少个苹果&#xff1f; 输入格式 输入两个不超过 1 0 9 10^9 109 正整数&#xff0c;分别表示每人分到…

chapter1-项目搭建

文章目录 序章1. 项目开发基础概念1.1 企业开发中常见的web项目类型1.2 企业项目开发流程1.3 立项申请阶段 2. 需求分析2.1 首页2.2 登录注册2.3 课程列表2.4 课程详情2.5 购物车2.6 商品结算2.7 购买成功2.8 个人中心2.9 我的课程及课程学习 3. 环境搭建3.1 创建虚拟环境3.2 相…

2024.9.13 Python与图像处理新国大EE5731课程大作业,索贝尔算子计算边缘,高斯核模糊边缘,Haar小波计算边缘

1.编写一个图像二维卷积程序。它应该能够处理任何灰度输入图像&#xff0c;并使用以下内核进行操作&#xff1a; %matplotlib inline import numpy as np import matplotlib.pyplot as plt from scipy import linalg import random as rm import math import cv2# import and …

基于云端的SIEM解决方案

最近的一项市场研究爆出了一组惊人的数字&#xff0c;在2024年&#xff0c;网络攻击增加了600%&#xff01;更加令人担忧的是&#xff0c;这恐怕只是冰山一角。世界各地的组织都已经认识到了这一威胁&#xff0c;并正在采取多重措施来抵御来自线下和远程混合式办公模式带来的网…

SpringBoot项目获取统一前缀配置以及获取非确定名称配置

SpringBoot项目获取统一前缀配置以及获取非确定名称配置 在SpringBoot项目中&#xff0c;我们经常看到统一前缀的配置&#xff0c;我们该怎么统一获取 my.config.a.namexiaoming my.config.a.age18 my.config.a.addressguangdong my.config.b.namexiaomli my.config.b.age20 my…

【Unity】手写图片轮播

最近项目空闲&#xff0c;回顾了一下之前写的杂七杂八的软件&#xff0c;比较多&#xff0c;而且比较杂乱&#xff0c;代码能看明白&#xff0c;但是非常不科学&#xff0c;不符合逻辑&#xff0c;然后我就有点无奈&#xff0c;虽说是做了很多年的老程序的&#xff0c;但是遇到…

小目标检测顶会新思路!最新成果刷爆遥感SOTA,参数小了18倍

遥感领域的小目标检测一直是个具有挑战性和趣味性的研究方向&#xff0c;同时也是顶会顶刊的常客。但不得不说&#xff0c;今年关于遥感小目标检测的研究热情尤其高涨&#xff0c;已经出现了很多非常优秀的成果。 比如SuperYOLO方法&#xff0c;通过融合多模态数据并执行高分辨…

数据库安全性控制

‍ 在当今信息化时代&#xff0c;数据库安全性 对于保护数据免受非法访问和损害至关重要。无论是个人数据还是企业机密&#xff0c;数据库安全性控制都能有效地防范潜在的威胁。本文将为你深入浅出地介绍数据库安全性控制的关键方法和机制&#xff0c;帮助你轻松掌握这一重要概…

vulnhub靶机:21 LTR: Scene1

下载 下载地址&#xff1a;https://www.vulnhub.com/entry/21ltr-scene-1,3/ 导入靶机 一直按默认的来&#xff0c;一直下一步 修改网卡 修改靶机和 kali 攻击机网络模式为仅主机模式 把仅主机模式的 IP 修改为 192.168.2.0 信息收集 主机发现 arp-scan -l 靶机 IP 是 192.…

Windows系统下安装Redis

文章目录 1、下载Redis安装包2、解压压缩包3、运行Redis4、Redis连接检测5、Redis相关设置5.1设置环境变量PATH5.2Redis 配置文件修改 1、下载Redis安装包 Windows版本的Redis可以在Github中下载&#xff1a;下载Redis 2、解压压缩包 将下载的压缩包解压到某个目录下&#…

微服务CI/CD实践(五)Jenkins Docker 自动化构建部署Java微服务

微服务CI/CD实践系列&#xff1a; 微服务CI/CD实践&#xff08;一&#xff09;环境准备及虚拟机创建 微服务CI/CD实践&#xff08;二&#xff09;服务器先决准备 微服务CI/CD实践&#xff08;三&#xff09;Jenkins部署及环境配置 微服务CI/CD实践&#xff08;四&#xff09;…

c++20 std::format 格式化说明

在标头<format>定义 ()功能很强大&#xff0c;它把字符串当成一个模板&#xff0c;通过传入的参数进行格式化&#xff0c;并且使用大括号‘{}’作为特殊字符代替‘%’。 1、基本用法 &#xff08;1&#xff09;不带编号&#xff0c;即“{}”&#xff08;2&#xff09;带…

学会使用西门子博途Startdrive中的测量功能

工程师在驱动调试过程中&#xff0c;往往需要对驱动系统的性能进行分析及优化&#xff0c;比如说借助于调试软件中的驱动器测量功能&#xff0c;可以得到驱动系统的阶跃响应、波特图等&#xff0c;以此为依据工程师可以调整速度控制器、电流控制器的相关参数&#xff0c;使驱动…

今天一定要彻底卸载Windows Denfender!攻略给你了

最近有小伙伴吐槽&#xff1a;明明都已经把Windows Defender关了&#xff0c;为啥它还会时不时拦截我下载的文件&#xff1f; 小白就问&#xff1a;明明是谁&#xff1f; 嗯…… 肯定有小伙伴遇到同样的问题&#xff0c;Windows Defender已经关了&#xff0c;但好像并没有完…

利用Xinstall,轻松搭建高效App运营体系

在移动互联网时代&#xff0c;App的推广和运营成为了企业发展的关键环节。然而&#xff0c;随着流量红利的逐渐消失&#xff0c;传统的推广方式已经难以满足企业快速获客的需求。在这个背景下&#xff0c;Xinstall作为一款强大的渠道推广工具&#xff0c;凭借其独特的功能和优势…

【IP协议】IP协议报头结构(上)

IP 协议报头结构 4位版本 实际上只有两个取值 4 > IPv4&#xff08;主流&#xff09;6 > IPv6 IPv2&#xff0c;IPv5 在实际中是没有的&#xff0c;可能是理论上/实验室中存在 4位首部长度 IP 协议报头也是变长的&#xff0c;因为选项个数不确定&#xff0c;所以报头长…

【达梦数据库】mysql 和达梦 tinyint 与 bit 返回值类型差异

测试环境 mysql5.7.44 达梦2024Q2季度版 前言 在mysql 中存在 tinyint&#xff08;1&#xff09;的用法来实现存储0 1 作为boolean的标识列&#xff1b;但是在达梦并不允许使用 tinyint&#xff08;1&#xff09;来定义列&#xff0c;只能使用 tinyint 即 取值范围为&#xff…

《深度学习》CUDA安装配置、pytorch库、torchvision库、torchaudio库安装

目录 一、下载CUDA 1、什么是CUDA 2、查看电脑支持版本号 3、下载CUDA包 1&#xff09;进入下列下载位置 2&#xff09;选择版本 4、安装CUDA 1&#xff09;双击这个文件&#xff0c;然后得到下列图像 2&#xff09;选择自定义安装 3&#xff09;取消选项Visual Inte…