jsp下載檔案的實現方法 及 注意__js
來源:互聯網
上載者:User
jsp中實現檔案下載
(一)
最簡單的方式是在網頁上做超級連結,如:<a href="music/abc.mp3">點擊下載</a>。
但是這樣伺服器上的目錄資源會直接暴露給終端使用者,會給網站帶來一些不 安全的因素。
因此可以採用其它方式實現下載,可以採用:
1、RequestDispatcher的方式進行;
2、採用檔案流輸出的方式下載。 (推薦)
1、採用RequestDispatcher的方式進行
Jsp代碼 <% response.setContentType("application/x-download");//設定為下載application/x-download String filedownload = "/要下載的檔案名稱";//即將下載的檔案的相對路徑 String filedisplay = "最終要顯示給使用者的儲存檔案名稱";//下載檔案時顯示的檔案儲存名稱 String filenamedisplay = URLEncoder.encode(filedisplay,"UTF-8"); response.addHeader("Content-Disposition","attachment;filename=" + filedisplay); try { RequestDispatcher dis = application.getRequestDispatcher(filedownload); if(dis!= null) { dis.forward(request,response); } response.flushBuffer(); } catch(Exception e) { e.printStackTrace(); } finally { } %>
2、採用檔案流輸出的方式下載
Jsp代碼 <%@page language="java" contentType="application/x-msdownload" pageEncoding="gb2312"%> <% //關於檔案下載時採用檔案流輸出的方式處理: //加上response.reset(),並且所有的%>後面不要換行,包括最後一個; response.reset();//可以加也可以不加 response.setContentType("application/x-download"); //application.getRealPath("/main/mvplayer/CapSetup.msi");擷取的實體路徑 String filedownload = "想辦法找到要提供下載的檔案的實體路徑+檔案名稱"; String filedisplay = "給使用者提供的下載檔案名稱"; String filedisplay = URLEncoder.encode(filedisplay,"UTF-8"); response.addHeader("Content-Disposition","attachment;filename=" + filedisplay); java.io.OutputStream outp = null; java.io.FileInputStream in = null; try { outp = response.getOutputStream(); in = new FileInputStream(filenamedownload); byte[] b = new byte[1024]; int i = 0; while((i = in.read(b)) > 0) { outp.write(b, 0, i); } // outp.flush(); //要加以下兩句話,否則會報錯 //java.lang.IllegalStateException: getOutputStream() has already been called for //this response out.clear(); out = pageContext.pushBody(); } catch(Exception