首页 > 编程 > Java > 正文

Java Web项目中实现文件下载功能的实例教程

2019-11-26 14:17:24
字体:
来源:转载
供稿:网友

需求:实现一个具有文件下载功能的网页,主要下载压缩包和图片
两种实现方法:

一:通过超链接实现下载
在HTML网页中,通过超链接链接到要下载的文件的地址

<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Insert title here</title> </head> <body> <h1>通过链接下载文件</h1> <a href="/day06/download/cors.zip">压缩包</a> <a href="/day06/download/1.png">图片</a> </body> </html> 

其中day06/download是文档路径,本实例的程序结构如下:

2016525184904951.png (333×385)

程序运行后,可以通过单击需要下载文档实现下载

2016525185001047.png (1366×702)

但是这里会出现一个问题,就是单击下载压缩包的时候会弹出下载页面,但是下载图片的时候浏览器就直接打开了图片,没有下载。

2016525185028779.png (438×330)

这是因为通过超链接下载文件时,如果浏览器可以识别该文件格式,浏览器就会直接打开。只有浏览器不能识别该文件格式的时候,才会实现下载。因此利用第二种方法实现下载功能。

二:通过Servlet程序实现下载
通过Servlet下载文件的原理是通过servlet读取目标程序,将资源返回客户端。

<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Insert title here</title> </head> <body> <h1>通过链接下载文件</h1> <a href="/day06/download/cors.zip">压缩包</a> <a href="/day06/download/1.png">图片</a> <h1>通过servlet程序下载文件</h1> <a href="/day06/ServletDownload?filename=cors.zip">压缩包</a> <a href="/day06/ServletDownload?filename=1.png">图片</a> </body> </html> 

其中,/day06/ServletDownload 是servlet程序的映射路径
然后新建一个servlet,名称为ServletDownload,URL映射为/ServletDownload

2016525185054838.png (525×524)

添加代码如下:

package com.lsgjzhuwei.servlet.response;  import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream;  import javax.servlet.ServletException; import javax.servlet.annotation.WebServlet; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse;  /**  * Servlet implementation class ServletDownload  */ @WebServlet(asyncSupported = true, urlPatterns = { "/ServletDownload" }) public class ServletDownload extends HttpServlet {   private static final long serialVersionUID = 1L;        /**    * @see HttpServlet#HttpServlet()    */   public ServletDownload() {     super();     // TODO Auto-generated constructor stub   }    /**    * @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response)    */   protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {     // TODO Auto-generated method stub          //获得请求文件名     String filename = request.getParameter("filename");     System.out.println(filename);          //设置文件MIME类型     response.setContentType(getServletContext().getMimeType(filename));     //设置Content-Disposition     response.setHeader("Content-Disposition", "attachment;filename="+filename);     //读取目标文件,通过response将目标文件写到客户端     //获取目标文件的绝对路径     String fullFileName = getServletContext().getRealPath("/download/" + filename);     //System.out.println(fullFileName);     //读取文件     InputStream in = new FileInputStream(fullFileName);     OutputStream out = response.getOutputStream();          //写文件     int b;     while((b=in.read())!= -1)     {       out.write(b);     }          in.close();     out.close();   }    /**    * @see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse response)    */   protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {     // TODO Auto-generated method stub   }  } 

重启tomcat服务器,即可实现对压缩包和对图片的下载。

2016525185126430.png (438×330)

2016525185151269.png (438×330)

三、小技巧:
点击链接来下载文件的方式很简便,后台把文件流输出来,通过浏览器实现下载功能,包括询问位置与文件存放,大多数浏览器会配置一个固定位置,不一定每次都问。

前端就非常简单了,一个<a>标签,href=“后台方法地址”,如果你的需求不能直接用超链接方式,可以在js里写 window.location.href =“后台方法地址”。

这样跳转到后台方法后

String filePath = this.getClass().getClassLoader().getResource("").toURI().getPath()          + "/exportPdf.pdf"; //文件在项目中的路径    File outfile = new File(filePath);    String filename = outfile.getName();// 获取文件名称    InputStream fis = new BufferedInputStream(new FileInputStream(          filePath));    byte[] buffer = new byte[fis.available()];     fis.read(buffer); //读取文件流    fis.close();    response.reset(); //重置结果集    response.addHeader("Content-Disposition", "attachment;filename="        + new String(filename.replaceAll(" ", "").getBytes("utf-8"),        "iso8859-1")); //返回头 文件名    response.addHeader("Content-Length", "" + outfile.length()); //返回头 文件大小    response.setContentType("application/octet-stream");  //设置数据种类    //获取返回体输出权    OutputStream os = new BufferedOutputStream(response.getOutputStream());     os.write(buffer); // 输出文件    os.flush();    os.close();

浏览器会直接识别这种形式的文件输出,弹出对话框。
注意此方法一定要用链接方式调后台,使用ajax和XMLHttpRequest方式都是不行的,这样返回的文件流会返回到方法的回调函数中,当然如果你想在js中获取文件,这样也行。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表