当前位置:网站首页>不依赖框架的文件下载
不依赖框架的文件下载
2022-07-30 05:47:00 【杰拉拉德】
package com.utils;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.net.URLEncoder;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
/**
* @ClassName: FileUtils.java
*
* @Description: 文件下载
*
* @author GERRARD
*
* @date 2015年1月27日下午3:10:10
*
*/
public final class FileUtils {
/**
* 文件下载
*
* @param request
* @param response
* @param filePath
* 文件相对路径(带文件名和后缀)
* @throws IOException
*/
public static void downloadFile(HttpServletRequest request,
HttpServletResponse response, String filePath) throws IOException {
// 下载文件所在路径
String basePath = request.getSession().getServletContext()
.getRealPath("/");
String downloadPath = basePath + filePath;
File fn = new File(downloadPath);
// 设置下载文件名
String fileName = fn.getName();
// 读取下载文件流
InputStream inStream = new FileInputStream(downloadPath);
// 设置输出的格式
response.reset();
response.setContentType("APPLICATION/OCTET-STREAM");
fileName = URLEncoder.encode(fileName, "utf-8");
response.setHeader("Content-Disposition",
"attachment; filename=\"" + fileName + "\"");
// 循环取出流中的数据
byte[] b = new byte[100];
int len;
try {
while ((len = inStream.read(b)) > 0) {
response.getOutputStream().write(b, 0, len);
}
inStream.close();
response.getOutputStream().close();
} catch (IOException e) {
e.printStackTrace();
inStream.close();
response.getOutputStream().close();
}
}
}
Action中调用
FileUtils.downloadFile(ServletActionContext.getRequest(),ServletActionContext.getResponse(), "/WEB-INF/model/template/"+ fileName);
其中 ServletActionContext.getRequest(),ServletActionContext.getResponse()是struts2中使用,不同框架不同。边栏推荐
猜你喜欢
独立按键控制led
Explore the efficiency of make_shared
OpenLayers 初学者指南,源码测试可用
This beta version of Typora is expired, please download and install a newer; workaround
Diwen serial screen production (serialization 1) ===== preparation work
矩阵键盘
Kunlun state screen production (serial 3) - based article (button serial port to send)
[Jiangsu University of Science and Technology Automation Association stm32F103c8t6] Notes [Initial 32 MCU and TIM timing interrupt initialization parameter configuration]
FPGA parsing B code----serial 2
干货:线上下单应知应会,快来了解下
随机推荐
2020-09-03 Solve the very slow installation of pip install [Errno 101] Network unreachable problem
每日一知识:手写深拷贝和浅拷贝(解决了循环引用的问题)
This beta version of Typora is expired, please download and install a newer;解决方法
Antd 树拖拽一些细节,官网没有,摸坑篇
Unity Shader标准光照模型——高光反射
ssh script space character conversion
闭包(你不知道的JS)
js advanced study notes (detailed)
Vim查找字符
[Jiangsu University Self-Chemistry Association stm32F103c8t6] Notes [Entry 32 MCU and GPIO initialization parameter configuration]
超详细的PCB高可靠辨别方法
Comparison of advantages and disadvantages of VsCode and Sublime editors
---------手撕二叉树,完成二叉树的前中后序遍历,以及前中后序查找
Real-time waveform display of CAN communication data based on QT (serial eight) ==== "Sub function or new class calls ui control"
Written before the official account - QT, ARM, DSP, microcontroller, power electronics and transmission!
this的指向问题
关于报错vscode
Unity Shader的结构与语义
基于STM32F103的消防系统之MQ-4气体传感器
OpenLayers 初学者指南,源码测试可用