java下载web目录下的文件

1.web项目目录下的文件
/CWGLXT/src/main/webapp/ExcelTemplate/subjectorgMSG.xlsx
2.前端JS
var url = sname + '/uploadController/download?download=' + dnUrl + '&fileName='+ coding(dnName);
window.location.href = url;
3.后台代码:
@RequestMapping("/download")
public void execute() {
if (getStaffInfo() == null) {
log.info("下载失败!");
return;
}
initParam(request);
String dir = getFileSavePath(request);
// 创建file对象
File file = new File(dir + download);
// 设置response的编码方式
response.setContentType("application/x-msdownload;charset=GB2312");
// 写明要下载的文件的大小
response.setContentLength((int) file.length());
// 解决中文乱码
response.setHeader("Content-Disposition", "attachment;filename="
+ getFileName());
FileInputStream fis = null;
BufferedInputStream buff = null;
try {
// 读出文件到i/o流
fis = new FileInputStream(file);
buff = new BufferedInputStream(fis);
byte[] b = new byte[1024];// 相当于我们的缓存
long k = 0;// 该值用于计算当前实际下载了多少字节
// 从response对象中得到输出流,准备下载
response.setCharacterEncoding("GB2312");
OutputStream myout = response.getOutputStream();
// 开始循环下载
while (k < file.length()) {
int j = buff.read(b, 0, 1024);
k += j;
// 将b中的数据写到客户端的内存
myout.write(b, 0, j);
}
// 将写入到客户端的内存的数据,刷新到磁盘
myout.flush();
myout.close();
log.info("用户【" + user.getStaffname() + "(" + user.getUseraccount()
+ ")】下载文件【" + getFileName() + "】成功!");
} catch (IOException e) {
log.error(e.getMessage());
} finally {
try {
fis.close();
buff.close();
} catch (IOException e) {
log.error(e.getMessage());
}
}
return;
}

public String getFileSavePath(HttpServletRequest request) {
String spath = request.getRealPath("");
System.out.println(spath);
System.out.println(request.getSession().getServletContext().getRealPath("/"));
return spath;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值