【第15章】spring-mvc之文件上传和下载

文章目录

  • 前言
  • 一、准备
    • 1. 打开开关(web.xml)
    • 2. 解析器(spring-mvc.xml)
  • 二、上传
    • 1. 前端
    • 2. 后端
    • 3. 结果
  • 三、下载
    • 1.前端
    • 2.后端
    • 3. 结果
  • 总结


前言

请注意,从Spring Framework 6.0及其新的Servlet 5.0+基线开始,基于Apache Commons FileUpload的过时的CommonsMultipartResolver不再可用。
本章节我们基于官方文档来进行文件的上传和下载。


一、准备

1. 打开开关(web.xml)

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="https://jakarta.ee/xml/ns/jakartaee"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="https://jakarta.ee/xml/ns/jakartaee https://jakarta.ee/xml/ns/jakartaee/web-app_6_0.xsd"version="6.0"><servlet><servlet-name>dispatcherServlet</servlet-name><servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class><init-param><param-name>contextConfigLocation</param-name><param-value>classpath:spring-mvc.xml</param-value></init-param><load-on-startup>1</load-on-startup><multipart-config/></servlet><servlet-mapping><servlet-name>dispatcherServlet</servlet-name><url-pattern>/</url-pattern></servlet-mapping>
</web-app>

2. 解析器(spring-mvc.xml)

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xmlns:context="http://www.springframework.org/schema/context"xmlns:mvc="http://www.springframework.org/schema/mvc"xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsdhttp://www.springframework.org/schema/context https://www.springframework.org/schema/context/spring-context.xsdhttp://www.springframework.org/schema/mvc https://www.springframework.org/schema/mvc/spring-mvc.xsd"><context:component-scan base-package="org.example.springmvc"></context:component-scan><!--    <mvc:annotation-driven/>--><!--静态资源配置--><mvc:resources mapping="/**" location="/resources"></mvc:resources><!--视图解析器--><bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"><property name="prefix" value="/WEB-INF/views/"/><property name="suffix" value=".jsp"/></bean><bean id="multipartResolver" class="org.springframework.web.multipart.support.StandardServletMultipartResolver"></bean>
</beans>

二、上传

1. 前端

<%--Created by IntelliJ IDEA.User: 张军国001Date: 2024/5/3Time: 10:32To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head><title>文件上传和下载</title>
</head>
<body>
<h1><%= "文件上传演示" %></h1>
<br/>
<form action="${pageContext.request.contextPath}/file/upload" method="post" enctype="multipart/form-data"><span>文件:</span><input type="file" name="file"><button type="submit">上传</button>
</form>
</body>
</html>

2. 后端

package org.example.springmvc.params.controller;import jakarta.servlet.http.HttpServletRequest;
import jakarta.servlet.http.HttpServletResponse;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestPart;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.multipart.MultipartFile;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;/*** Create by zjg on 2024/5/3*/
@RequestMapping("/file/")
@RestController
public class FileController {String path="WEB-INF/nas";@RequestMapping("upload")public void upload(@RequestPart MultipartFile file, HttpServletRequest request,HttpServletResponse response) throws IOException {String filename = file.getOriginalFilename();System.out.println(filename);String realPath = request.getServletContext().getRealPath(path);File dir = new File(realPath);if(!dir.exists()){dir.mkdirs();}file.transferTo(new File(realPath+File.separator+filename));System.out.println(String.format("[%s]上传成功",filename));response.setStatus(200);}
}

3. 结果

[springmvc.png]上传成功

三、下载

1.前端

<%--Created by IntelliJ IDEA.User: 张军国001Date: 2024/5/3Time: 10:32To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head><title>文件上传和下载</title>
</head>
<body>
<h1><%= "文件下载演示" %></h1>
<form action="${pageContext.request.contextPath}/file/download"><span>文件:</span><input type="text" name="file" id="file"><button type="submit">下载</button>
</form>
</body>
</html>

2.后端

package org.example.springmvc.params.controller;import jakarta.servlet.http.HttpServletRequest;
import jakarta.servlet.http.HttpServletResponse;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestPart;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.multipart.MultipartFile;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;/*** Create by zjg on 2024/5/3*/
@RequestMapping("/file/")
@RestController
public class FileController {String path="WEB-INF/nas";@RequestMapping("download")public void download(String file,HttpServletRequest request,HttpServletResponse response) throws IOException {String realPath = request.getServletContext().getRealPath(path);String filename=realPath+File.separator+ file;File file1 = new File(filename);if(!file1.exists()){// 如果文件不存在,则返回404错误response.sendError(HttpServletResponse.SC_NOT_FOUND);System.out.println(String.format("文件[%s]不存在",file));return;}downloadFile(file1,response);System.out.println(String.format("[%s]下载完成",file));response.setStatus(200);}public void downloadFile(File file,HttpServletResponse response) throws IOException {// 设置响应头// 设置响应的内容类型为二进制流,这样浏览器就知道如何下载文件而不是尝试显示它response.setContentType("application/octet-stream");// 设置响应头中的Content-Disposition,它告诉浏览器这是一个需要下载的文件,以及下载后文件的默认名称// attachment表示需要下载,filename表示下载后的默认文件名String headerValue = "attachment; filename=\"" + file.getName() + "\"";response.setHeader("Content-Disposition", headerValue);// 设置响应头中的Content-Length,它告诉浏览器文件的大小response.setContentLength((int) file.length());// 写入文件内容到输出流InputStream inputStream = new FileInputStream(file);OutputStream outputStream = response.getOutputStream();byte[] buffer = new byte[4096];int bytesRead = -1;while ((bytesRead = inputStream.read(buffer)) != -1) {outputStream.write(buffer, 0, bytesRead);}// 关闭流inputStream.close();outputStream.close();}
}

3. 结果

文件[spring]不存在
[springmvc.png]下载完成

总结

回到顶部
官方文档

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

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

相关文章

如何解决Facebook账号被封的10种方法|2024年最新版

1、facebook广告设置 一般不建议使用自己的个人的账号来设置Facebook广告&#xff0c;我们可以创建新的账号并与个人资料分开来。 如果您需要进行一系列不相关的促销活动&#xff0c;或者促销多个不同的产品或链接&#xff0c;建议您为每个产品或链接创造新的Facebook账号&am…

Remix实现多语言

JS 中不同框架都有自己的多语言库&#xff0c;在 Remix 使用多语言&#xff0c;需要安装 remix-i18next 这个库。这个包是基于 i18next 开发的&#xff0c;使用方式可以到官网查看。 Remix-i18next 安装步骤如下&#xff1a; 安装依赖 npm install remix-i18next i18next rea…

go导入包时提示no required module provides package解决方法

原因&#xff0c;这个包在你的本机没有安装 如redis包的提示为 could not import github.com/gomodule/redigo/redis (no required module provides package "github.com/gomodule/redigo/redis")解决方法&#xff1a; go get github.com/gomodule/redigo/redis

easy_signin_ctfshow_2023愚人杯

https://ctf.show/challenges#easy_signin-3967 2023愚人杯信息检索&#xff0c;在请求荷载中发现一个base64 face.pngencode ZmFjZS5wbmc解密结果 flag.pngencode ZmxhZy5wbmc尝试一下 返回内容 Warning: file_get_contents(flag.png): failed to open stream: No such file…

压缩和归档库-LZ4介绍

1.简介 LZ4是一种快速的压缩算法&#xff0c;提供压缩和解压缩的速度&#xff0c;而牺牲了压缩率。它被设计用于快速的数据压缩和解压缩&#xff0c;特别是用于数据存储和传输。LZ4通常用于需要高速数据处理的场景&#xff0c;如数据库、日志文件处理和实时数据传输。 LZ4的特…

[NSSRound#1 Basic]basic_check

[NSSRound#1 Basic]basic_check 开题什么都没有&#xff0c;常规信息搜集也无效 发现题目允许PUT的两种做法&#xff1a; 1、 CURL的OPTIONS请求方法查看允许的请求方式 curl -v -X OPTIONS http://node4.anna.nssctf.cn:28545/index.php2、 kali自带的nikto工具扫描网址 Nik…

DetCLIPv3:面向多功能生成开放词汇的目标检测

DetCLIPv3:面向多功能生成开放词汇的目标检测 摘要IntroductionRelated worksMethod DetCLIPv3: Towards Versatile Generative Open-vocabulary Object Detection 摘要 现有的开词汇目标检测器通常需要用户预设一组类别&#xff0c;这大大限制了它们的应用场景。在本文中&…

新能源汽车充电站智慧充电电能服务综合解决方案

安科瑞薛瑶瑶18701709087/17343930412 ★解决方案 ✔目的地充电-EMS微电网平台 基于EMS解决方案从设备运维的角度解决本地充电的能量管理及运维问题&#xff0c;与充电管理平台打通数据&#xff0c;为企业微电网提供源、网、荷、储、充一体化解决方案。 ✔运营场站--电能服务…

python3有serial库吗

一、概述 pyserial模块封装了对串口的访问。 二、特性 在支持的平台上有统一的接口。 通过python属性访问串口设置。 支持不同的字节大小、停止位、校验位和流控设置。 可以有或者没有接收超时。 类似文件的API&#xff0c;例如read和write&#xff0c;也支持readline等…

基于Detectron2的计算机视觉实践

书籍&#xff1a;Hands-On Computer Vision with Detectron2: Develop object detection and segmentation models with a code and visualization approach 作者&#xff1a;Van Vung Pham&#xff0c;Tommy Dang 出版&#xff1a;Packt Publishing 书籍下载-《基于Detectr…

MySQL学习笔记11——数据备份 范式 ER模型

数据备份 & 范式 & ER模型 一、数据备份1、如何进行数据备份&#xff08;1&#xff09;备份数据库中的表&#xff08;2&#xff09;备份数据库&#xff08;3&#xff09;备份整个数据库服务器 2、如何进行数据恢复3、如何导出和导入表里的数据&#xff08;1&#xff09…

(二十一)springboot实战——Spring AI劲爆来袭

前言 本节内容是关于Spring生态新发布的Spring AI的介绍&#xff0c;Spring AI 是一个面向人工智能工程的应用框架。其目标是将 Spring 生态系统的设计原则&#xff0c;如可移植性和模块化设计&#xff0c;应用到人工智能领域&#xff0c;并推广使用普通的Java对象&#xff08…

雪球期权是什么意思?你了解雪球期权吗?

今天期权懂带你了解雪球期权是什么意思&#xff1f;你了解雪球期权吗&#xff1f;雪球期权属于场外期权的一种&#xff0c;交易的方式只能通过线下跟券商询价的方式进行&#xff0c;类似场外个股期权的交易方式。 雪球期权是什么意思&#xff1f; 雪球期权&#xff0c;顾名思义…

AIGC技术的力量:探索其原理与应用的无限可能

随着人工智能技术的飞速发展&#xff0c;AIGC&#xff08;人工智能生成内容&#xff09;技术逐渐成为人们关注的焦点。本文将深入探讨AIGC技术的内涵、应用领域及其未来发展。 AIGC技术概述 AIGC&#xff08;Artificial Intelligence Generated Content&#xff09;技术&…

js逆向,参数加密js混淆

关键词 JS 混淆、源码乱码、参数动态加密 逆向目标 题目1&#xff1a;抓取所有&#xff08;5页&#xff09;机票的价格&#xff0c;并计算所有机票价格的平均值&#xff0c;填入答案。 目标网址&#xff1a;https://match.yuanrenxue.cn/match/1目标接口&#xff1a;https://ma…

SSE介绍(实现流式响应)

写在前面 本文一起来看下SSE相关内容。 1&#xff1a;SSE是什么 全称&#xff0c;server-send events&#xff0c;基于http协议&#xff0c;一次http请求&#xff0c;server端可以分批推送数据&#xff0c; 不同于websocket的全双工通信&#xff0c;SSM单向通信,一般应用于需…

如何利用IPIDEA代理IP优化数据采集效率?

一、 前言二、 IPIDEA介绍三、体验步骤四、实战训练五、结语 一、 前言 在全球化与信息化交织的当代社会&#xff0c;数据已成为驱动商业智慧与技术革新的核心引擎。网络&#xff0c;作为信息汇聚与交流的枢纽&#xff0c;不仅是人们获取知识的窗口&#xff0c;更是商业活动与技…

flask sqlalchemy 多条数据删除

flasksqlalchemy 多条数据删除 在Flask-SQLAlchemy中&#xff0c;如果你想要删除多条数据&#xff0c;可以使用delete()方法配合filter()来指定条件。以下是一个删除满足特定条件的所有记录的例子&#xff1a; from flask_sqlalchemy import SQLAlchemy from your_flask_app i…

CONFIG_INITRAMFS_SOURCE

CONFIG_INITRAMFS_SOURCE 是一个内核配置选项&#xff0c;它指定了初始 RAM 磁盘&#xff08;initrd&#xff09;或初始 RAM 文件系统&#xff08;initramfs&#xff09;文件的位置&#xff0c;该文件将被 Linux 内核在启动过程中使用。值 "./usr/rootfs.cpio.lzma" …

【数据结构】详解栈

今天我们主要来了解栈&#xff01;如果对知识点有模糊&#xff0c;可翻阅以往文章哦&#xff01; 个人主页&#xff1a;小八哥向前冲~-CSDN博客 所属专栏&#xff1a;数据结构【c语言版】_小八哥向前冲~的博客-CSDN博客 c语言专栏&#xff1a;c语言_小八哥向前冲~的博客-CSDN博…