共计 1092 个字符,预计需要花费 3 分钟才能阅读完成。
1、下载概述
下载就是向客户端响应字节数据!
原来我们响应的都是 html 的字符数据!
把一个文件变成字节数组,使用 response.getOutputStream() 来各应给浏览器!!!
2、下载的要求
两个头一个流!
Content-Type:
你传递给客户端的文件是什么 MIME 类型,例如:image/pjpeg
通过文件名称调用 ServletContext 的 getMimeType() 方法,得到 MIME 类型!
Content-Disposition:
它的默认值为 inline,表示在浏览器窗口中打开!attachment;filename=xxx
在 filename= 后面跟随的是显示在下载框中的文件名称!
流:要下载的文件数据!自己 new 一个输入流即可!该输入流指向的就是要下载的文件!
3、下载演示
download.jsp
<body>
<a href="<c:url value='/DownloadServlet'/>">
下载链接
</a>
</body>
DownloadServlet.java
public class Download1Servlet extends HttpServlet {@Override
public void doGet(HttpServletRequest req, HttpServletResponse resp)
throws ServletException, IOException {/*
* 两个头一个流
* 1. Content-Type
* 2. Content-Disposition
* 3. 流:下载文件的数据
*/
String filename = "F:/a.mp3";
String contentType = this.getServletContext()
.getMimeType(filename);// 通过文件名称获取 MIME 类型
String contentDisposition = "attachment;filename=" + a.mp3;
// 一个流
FileInputStream input = new FileInputStream(filename);
// 设置头
resp.setHeader("Content-Type", contentType);
resp.setHeader("Content-Disposition", contentDisposition);
// 获取绑定了响应端的流
ServletOutputStream output = resp.getOutputStream();
IOUtils.copy(input, output);// 把输入流中的数据写入到输出流中。
input.close();}
}
正文完
星哥玩云-微信公众号