案例-文件下载
文件下载需求
- 页面显示超链接
- 点击超链接弹出下载提示框
- 完成图片文件下载
分析
- 超连接指向的资源如果能够被浏览器解析 则在浏览器中展示,如果不能解析 则弹出下载提示框 不满足需求
- 任何资源都必须弹出下载提示框
- 使用响应头设置资源的打开方式
-
- content-disposition:attachment;filename=xxx
步骤:
- 定义页面 编辑超链接href属性 指向Servlet 传递资源名称filename
- 定义Servlet
- 获取文件名称
- 使用字节输入流加载文件仅内存
- 指定response的响应头:content-disposition:attchment;filename=xxx
- 将数据写出到response输出流
问题:
- 中文文件问题
- 解决思路
- 获取客户端使用的浏览器版本信息
- 根据不同的版本信息 设置filename的编码方式不同
- 解决思路
代码实现
html页面
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>文件下载</title> </head> <body> <a href="/DownloadServlet?filename=四代目.png">图片1</a> <a href="/DownloadServlet?filename=人柱力.png">图片2</a> </body> </html>
DownloadServlet类
package com.bai.download; import javax.servlet.ServletContext; import javax.servlet.ServletException; import javax.servlet.ServletOutputStream; import javax.servlet.annotation.WebServlet; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import java.io.FileInputStream; import java.io.IOException; @WebServlet("/DownloadServlet") public class DownloadServlet extends HttpServlet { @Override protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { //1.获取请求参数 文件名称 String filename = req.getParameter("filename"); //2.使用字节输出流加载文件进行内存 //2.1找到文件服务器路径 ServletContext servletContext = this.getServletContext(); String realPath = servletContext.getRealPath("/img/" + filename); //2.2用字节流关联 FileInputStream fis = new FileInputStream(realPath); //3.设置response的响应头 //3.1设置响应头类型:content-type String mimeType = servletContext.getMimeType(filename);//获取文件的mime类型 resp.setHeader("content-type",mimeType); //解决中文文件名问题 //1.获取user-agent请求头 String agent = req.getHeader("user-agent"); //2.使用工具类方法编码文件名即可 filename=DownloadUtils.getFileName(agent,filename); //3.2设置响应头打开方式:content-disposition resp.setHeader("content-disposition","attachment;filename="+filename); //4.将输入流的数据写出得到输出流中 ServletOutputStream sos = resp.getOutputStream(); byte[] buff = new byte[1024*8]; int len=0; while ((len=fis.read(buff))!=-1){ sos.write(buff,0,len); } fis.close(); } @Override protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { doGet(req,resp); } }
工具类
package com.bai.download; import sun.misc.BASE64Encoder; import java.io.UnsupportedEncodingException; import java.net.URLEncoder; public class DownloadUtils { public static String getFileName(String agent,String filename) throws UnsupportedEncodingException { if (agent.contains("MSIE")){ //IE浏览器 filename= URLEncoder.encode(filename,"utf-8"); filename = filename.replace("+"," "); }else if (agent.contains("Firefox")){ //火狐浏览器 BASE64Encoder base64Encoder = new BASE64Encoder(); filename = "=?utf-8?B?" + base64Encoder.encode(filename.getBytes("utf-8"))+"?="; }else{ //其他浏览器 filename=URLEncoder.encode(filename,"utf-8"); } return filename; } }
运行结果
标签:文件,String,agent,filename,案例,import,servlet,javax,下载 From: https://www.cnblogs.com/aimz01/p/16587103.html