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;
}
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;
}