jsp下載檔案的實現方法

333111444發表於2008-03-04
jsp中實現檔案下載的最簡單的方式是在網頁上做超級連結,如:點選下載。但是這樣伺服器上的目錄資源會直接暴露給終端使用者,會給網站帶來一些不 安全的因素。因此可以採用其它方式實現下載,可以採用:1、RequestDispatcher的方式進行;2、採用檔案流輸出的方式下載。

1、採用RequestDispatcher的方式進行

jsp頁面中新增如下程式碼:
response.setContentType("application/x-download");//設定為下載application/x-download
String filedownload = "/要下載的檔名";//即將下載的檔案的相對路徑
String filedisplay = "最終要顯示給使用者的儲存檔名";//下載檔案時顯示的檔案儲存名稱

[@more@]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、採用檔案流輸出的方式下載

//關於檔案下載時採用檔案流輸出的方式處理:
//加上response.reset(),並且所有的%>後面不要換行,包括最後一個

response.reset();//可以加也可以不加
response.setContentType("application/x-download");
String filedownload = "想辦法找到要提供下載的檔案的物理路徑+檔名";
String filedisplay = "給使用者提供的下載檔名";
filedisplay = URLEncoder.encode(filedisplay,"UTF-8");
response.addHeader("Content-Disposition","attachment;filename=" + filedisplay);

OutputStream outp = null;
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();
}
catch(Exception e)
{
System.out.println("Error!");
e.printStackTrace();
}
finally
{
if(in != null)
{
in.close();
in = null;
}
if(outp != null)
{
outp.close();
outp = null;
}
}
%>

http://hi.baidu.com/ak456/blog/item/7eaaebfaab186edab58f316e.html

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/12058779/viewspace-1000356/,如需轉載,請註明出處,否則將追究法律責任。

相關文章