访问资源时相应头如果没有设置 Content-Disposition,浏览器默认按照 inline 值进行处理
inline 能显示就显示,不能显示就下载
只需要修改相应头中 Context-Disposition=”attachment;filename=文件名”
2.1 attachment 下载,以附件形式下载.
2.2 filename=值就是下载时显示的下载文件名
第一步:导入两个包
第二步:设置超链接 选择要下载的文件
第三步:编写控制器方法
@RequestMapping("download")
public void download(String
fileName,HttpServletResponse res,HttpServletRequest req) throws IOException{
//设置响应流中文件进行下载
res.setHeader("Content-Disposition","attachment;filename="+fileName);
//把二进制流放入到响应体中.
ServletOutputStream os = res.getOutputStream();
String path = req.getServletContext().getRealPath("files");
System.out.println(path);
File file = new File(path, fileName);
byte[] bytes =FileUtils.readFileToByteArray(file);
os.write(bytes);
os.flush();
os.close();
}