Spring MVC 文件上传下载的实例
发布时间 - 2026-01-10 22:23:40 点击率:次Spring MVC 文件上传下载,具体如下:

(1) 导入jar包:ant.jar、commons-fileupload.jar、connom-io.jar。
(2) 在src/context/dispatcher.xml中添加
<bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver" p:defaultEncoding="UTF-8" />
注意,需要在头部添加内容,添加后如下所示:
<beans default-lazy-init="true" xmlns="http://www.springframework.org/schema/beans" xmlns:p="http://www.springframework.org/schema/p" 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-3.0.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd">
(3) 添加工具类FileOperateUtil.java
/**
*
* @author geloin
*/
package com.geloin.spring.util;
import java.io.BufferedInputStream;
import java.io.BufferedOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Date;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.apache.tools.zip.ZipEntry;
import org.apache.tools.zip.ZipOutputStream;
import org.springframework.util.FileCopyUtils;
import org.springframework.web.multipart.MultipartFile;
import org.springframework.web.multipart.MultipartHttpServletRequest;
public class FileOperateUtil {
private static final String REALNAME = "realName";
private static final String STORENAME = "storeName";
private static final String SIZE = "size";
private static final String SUFFIX = "suffix";
private static final String CONTENTTYPE = "contentType";
private static final String CREATETIME = "createTime";
private static final String UPLOADDIR = "uploadDir/";
/**
* 将上传的文件进行重命名
*
* @param name
* @return
*/
private static String rename(String name) {
Long now = Long.parseLong(new SimpleDateFormat("yyyyMMddHHmmss")
.format(new Date()));
Long random = (long) (Math.random() * now);
String fileName = now + "" + random;
if (name.indexOf(".") != -1) {
fileName += name.substring(name.lastIndexOf("."));
}
return fileName;
}
/**
* 压缩后的文件名
*
* @param name
* @return
*/
private static String zipName(String name) {
String prefix = "";
if (name.indexOf(".") != -1) {
prefix = name.substring(0, name.lastIndexOf("."));
} else {
prefix = name;
}
return prefix + ".zip";
}
/**
* 上传文件
*
* @param request
* @param params
* @param values
* @return
* @throws Exception
*/
public static List<Map<String, Object>> upload(HttpServletRequest request,
String[] params, Map<String, Object[]> values) throws Exception {
List<Map<String, Object>> result = new ArrayList<Map<String, Object>>();
MultipartHttpServletRequest mRequest = (MultipartHttpServletRequest) request;
Map<String, MultipartFile> fileMap = mRequest.getFileMap();
String uploadDir = request.getSession().getServletContext()
.getRealPath("/")
+ FileOperateUtil.UPLOADDIR;
File file = new File(uploadDir);
if (!file.exists()) {
file.mkdir();
}
String fileName = null;
int i = 0;
for (Iterator<Map.Entry<String, MultipartFile>> it = fileMap.entrySet()
.iterator(); it.hasNext(); i++) {
Map.Entry<String, MultipartFile> entry = it.next();
MultipartFile mFile = entry.getValue();
fileName = mFile.getOriginalFilename();
String storeName = rename(fileName);
String noZipName = uploadDir + storeName;
String zipName = zipName(noZipName);
// 上传成为压缩文件
ZipOutputStream outputStream = new ZipOutputStream(
new BufferedOutputStream(new FileOutputStream(zipName)));
outputStream.putNextEntry(new ZipEntry(fileName));
outputStream.setEncoding("GBK");
FileCopyUtils.copy(mFile.getInputStream(), outputStream);
Map<String, Object> map = new HashMap<String, Object>();
// 固定参数值对
map.put(FileOperateUtil.REALNAME, zipName(fileName));
map.put(FileOperateUtil.STORENAME, zipName(storeName));
map.put(FileOperateUtil.SIZE, new File(zipName).length());
map.put(FileOperateUtil.SUFFIX, "zip");
map.put(FileOperateUtil.CONTENTTYPE, "application/octet-stream");
map.put(FileOperateUtil.CREATETIME, new Date());
// 自定义参数值对
for (String param : params) {
map.put(param, values.get(param)[i]);
}
result.add(map);
}
return result;
}
/**
* 下载
* @param request
* @param response
* @param storeName
* @param contentType
* @param realName
* @throws Exception
*/
public static void download(HttpServletRequest request,
HttpServletResponse response, String storeName, String contentType,
String realName) throws Exception {
response.setContentType("text/html;charset=UTF-8");
request.setCharacterEncoding("UTF-8");
BufferedInputStream bis = null;
BufferedOutputStream bos = null;
String ctxPath = request.getSession().getServletContext()
.getRealPath("/")
+ FileOperateUtil.UPLOADDIR;
String downLoadPath = ctxPath + storeName;
long fileLength = new File(downLoadPath).length();
response.setContentType(contentType);
response.setHeader("Content-disposition", "attachment; filename="
+ new String(realName.getBytes("utf-8"), "ISO8859-1"));
response.setHeader("Content-Length", String.valueOf(fileLength));
bis = new BufferedInputStream(new FileInputStream(downLoadPath));
bos = new BufferedOutputStream(response.getOutputStream());
byte[] buff = new byte[2048];
int bytesRead;
while (-1 != (bytesRead = bis.read(buff, 0, buff.length))) {
bos.write(buff, 0, bytesRead);
}
bis.close();
bos.close();
}
}
可完全使用而不必改变该类,需要注意的是,该类中设定将上传后的文件放置在WebContent/uploadDir下。
(4) 添加FileOperateController.Java
/**
*
* @author geloin
*/
package com.geloin.spring.controller;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.ServletRequestUtils;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.servlet.ModelAndView;
import com.geloin.spring.util.FileOperateUtil;
@Controller
@RequestMapping(value = "background/fileOperate")
public class FileOperateController {
/**
* 到上传文件的位置
* @return
*/
@RequestMapping(value = "to_upload")
public ModelAndView toUpload() {
return new ModelAndView("background/fileOperate/upload");
}
/**
* 上传文件
*
* @param request
* @return
* @throws Exception
*/
@RequestMapping(value = "upload")
public ModelAndView upload(HttpServletRequest request) throws Exception {
Map<String, Object> map = new HashMap<String, Object>();
// 别名
String[] alaises = ServletRequestUtils.getStringParameters(request,
"alais");
String[] params = new String[] { "alais" };
Map<String, Object[]> values = new HashMap<String, Object[]>();
values.put("alais", alaises);
List<Map<String, Object>> result = FileOperateUtil.upload(request,
params, values);
map.put("result", result);
return new ModelAndView("background/fileOperate/list", map);
}
/**
* 下载
*
* @param attachment
* @param request
* @param response
* @return
* @throws Exception
*/
@RequestMapping(value = "download")
public ModelAndView download(HttpServletRequest request,
HttpServletResponse response) throws Exception {
String storeName = "201205051340364510870879724.zip";
String realName = "Java设计模式.zip";
String contentType = "application/octet-stream";
FileOperateUtil.download(request, response, storeName, contentType,
realName);
return null;
}
}
下载方法请自行变更,若使用数据库保存上传文件的信息时,请参考Spring MVC 整合Mybatis实例。
(5) 添加fileOperate/upload.jsp
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>Insert title here</title> </head> <body> </body> <form enctype="multipart/form-data" action="<c:url value="/background/fileOperate/upload.html" />" method="post"> <input type="file" name="file1" /> <input type="text" name="alais" /><br /> <input type="file" name="file2" /> <input type="text" name="alais" /><br /> <input type="file" name="file3" /> <input type="text" name="alais" /><br /> <input type="submit" value="上传" /> </form> </html>
确保enctype的值为multipart/form-data;method的值为post。
(6) 添加fileOperate/list.jsp
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Insert title here</title>
</head>
<body>
<c:forEach items="${result }" var="item">
<c:forEach items="${item }" var="m">
<c:if test="${m.key eq 'realName' }">
${m.value }
</c:if>
<br />
</c:forEach>
</c:forEach>
</body>
</html>
(7) 通过http://localhost:8080/spring_test/background/fileOperate/to_upload.html访问上传页面,通过http://localhost:8080/spring_test/background/fileOperate/download.html下载文件
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
# springmvc上传下载
# spring
# mvc上传和下载
# springmvc实现上传
# SpringMVC实现文件的上传和下载实例代码
# springMVC配置环境实现文件上传和下载
# SpringMVC下实现Excel文件上传下载
# SpringMVC实现文件上传和下载功能
# Spring MVC的文件上传和下载以及拦截器的使用实例
# SpringMVC实现文件上传和下载的工具类
# spring mvc实现文件上传与下载功能
# SpringMVC实现文件上传下载的全过程
# 上传
# 上传文件
# 值为
# 的是
# 自定义
# 所示
# 需要注意
# 请参考
# 大家多多
# 压缩文件
# 下载方法
# 重命名
# 类中
# 而不必
# 请自行
# CONTENTTYPE
# String
# REALNAME
# private
# static
相关栏目:
【
网站优化151355 】
【
网络推广146373 】
【
网络技术251813 】
【
AI营销90571 】
相关推荐:
Laravel的HTTP客户端怎么用_Laravel HTTP Client发起API请求教程
php在windows下怎么调试_phpwindows环境调试操作说明【操作】
阿里云网站搭建费用解析:服务器价格与建站成本优化指南
Laravel如何实现全文搜索功能?(Scout和Algolia示例)
免费的流程图制作网站有哪些,2025年教师初级职称申报网上流程?
Laravel storage目录权限问题_Laravel文件写入权限设置
高性价比服务器租赁——企业级配置与24小时运维服务
宙斯浏览器怎么屏蔽图片浏览 节省手机流量使用设置方法
Laravel怎么防止CSRF攻击_Laravel CSRF保护中间件原理与实践
高配服务器限时抢购:企业级配置与回收服务一站式优惠方案
教学论文网站制作软件有哪些,写论文用什么软件
?
Laravel广播系统如何实现实时通信_Laravel Reverb与WebSockets实战教程
七夕网站制作视频,七夕大促活动怎么报名?
Laravel如何设置定时任务(Cron Job)_Laravel调度器与任务计划配置
Laravel如何使用API Resources格式化JSON响应_Laravel数据资源封装与格式化输出
jQuery中的100个技巧汇总
Laravel如何优雅地处理服务层_在Laravel中使用Service层和Repository层
Laravel用户密码怎么加密_Laravel Hash门面使用教程
Internet Explorer官网直接进入 IE浏览器在线体验版网址
Laravel如何操作JSON类型的数据库字段?(Eloquent示例)
如何实现javascript表单验证_正则表达式有哪些实用技巧
今日头条AI怎样推荐抢票工具_今日头条AI抢票工具推荐算法与筛选【技巧】
如何在搬瓦工VPS快速搭建网站?
大型企业网站制作流程,做网站需要注册公司吗?
北京网站制作的公司有哪些,北京白云观官方网站?
Laravel如何使用软删除(Soft Deletes)功能_Eloquent软删除与数据恢复方法
php嵌入式断网后怎么恢复_php检测网络重连并恢复硬件控制【操作】
如何用JavaScript实现文本编辑器_光标和选区怎么处理
什么是JavaScript解构赋值_解构赋值有哪些实用技巧
Laravel Eloquent性能优化技巧_Laravel N+1查询问题解决
Laravel怎么使用Intervention Image库处理图片上传和缩放
如何快速搭建高效简练网站?
香港服务器租用费用高吗?如何避免常见误区?
Laravel如何使用Service Provider服务提供者_Laravel依赖注入与容器绑定【深度】
WordPress 子目录安装中正确处理脚本路径的完整指南
Laravel怎么实现支付功能_Laravel集成支付宝微信支付
Laravel如何升级到最新的版本_Laravel版本升级流程与兼容性处理
在线ppt制作网站有哪些软件,如何把网页的内容做成ppt?
Laravel如何安装Breeze扩展包_Laravel用户注册登录功能快速实现【流程】
Thinkphp 中 distinct 的用法解析
微信小程序 闭包写法详细介绍
制作公司内部网站有哪些,内网如何建网站?
Laravel怎么创建自己的包(Package)_Laravel扩展包开发入门到发布
,网页ppt怎么弄成自己的ppt?
网站页面设计需要考虑到这些问题
如何在腾讯云服务器快速搭建个人网站?
怎么用AI帮你设计一套个性化的手机App图标?
Laravel如何使用.env文件管理环境变量?(最佳实践)
瓜子二手车官方网站在线入口 瓜子二手车网页版官网通道入口
Android okhttputils现在进度显示实例代码

