用JSP來實(shí)現(xiàn)文件下載功能的幾種方式_JSP教程

      編輯Tag賺U幣
      教程Tag:暫無Tag,歡迎添加,賺取U幣!

      推薦:Servlet和Filter的url匹配url-pattern
        Servlet和filter是J2EE開發(fā)中常用的技術(shù),使用方便,配置簡單,老少皆宜。   估計(jì)大多數(shù)朋友都是直接配置用,也沒有關(guān)心過具體的細(xì)節(jié),今天遇到一個問題,上網(wǎng)查了servlet的規(guī)范才

      1.最直接最簡單的,方式是把文件地址直接放到html頁面的一個鏈接中。這樣做的缺點(diǎn)是把文件在服務(wù)器上的路徑暴露了,并且還無法對文件下載進(jìn)行其它的控制(如權(quán)限)。這個就不寫示例了。

      2.在服務(wù)器端把文件轉(zhuǎn)換成輸出流,寫入到response,以response把文件帶到瀏覽器,由瀏覽器來提示用戶是否愿意保存文件到本地。

      3.既然是JSP的話,還有一種方式就是用Applet來實(shí)現(xiàn)文件的下載。不過客戶首先得信任你的這個Applet小程序,由這個程序來接受由servlet發(fā)送來的數(shù)據(jù)流,并寫入到本地。

      Servlet端示例

      public void service(HttpServletRequest req, HttpServletResponse res)throws ServletException, IOException {res.setContentType(" text/plain ");OutputStream outputStream = null;try {outputStream = res.getOutputStream();//把文件路徑為srcFile的文件寫入outputStream中popFile(srcFile, outputStream)) ;} catch (IOException e) {e.printStackTrace(); }}

      JApplet端示例

      URLConnection con;try {//url是被調(diào)用的SERVLET的網(wǎng)址 如 *.do con = url.openConnection();con.setUseCaches(false);con.setDoInput(true);con.setDoOutput(true);con.setRequestProperty("Content-Type","application/octet-stream");InputStream in = con.getInputStream();ProgressMonitorInputStream pmInputStream = new ProgressMonitorInputStream(pane, "正在從服務(wù)器下載文件內(nèi)容", in);ProgressMonitor pMonitor = pmInputStream.getProgressMonitor();pMonitor.setMillisToDecideToPopup(3);pMonitor.setMillisToPopup(3);//localfilepath本地路徑,localstr文件文件夾,filename本地文件名String localfilepath = localstr filename ;//方法saveFilsaveFilee是把輸入流pmInputStream寫到文件localfilepath中 if(saveFilsaveFilee(localfilepath,pmInputStream)){     openLocalFile(localfilepath);}

      4.順便把JApplet上傳文件的代碼也貼上來.

      JApplet端示例

      URLConnection con;try {con = url.openConnection();//url是被調(diào)用的SERVLET的網(wǎng)址 如 *.do    con.setUseCaches(false);con.setDoInput(true);con.setDoOutput(true);con.setRequestProperty("Content-Type","application/octet-stream"); OutputStream out = con.getOutputStream();//localfilepath本地路徑,localstr文件文件夾,filename本地文件名String localfilepath = localstr filename;//文件getOutputStream是把文件localfilepath寫到輸出流out中g(shù)etOutputStream(localfilepath,out);InputStream in = con.getInputStream();return true;}catch (IOException e) {System.out.println("文件上傳出錯!");e.printStackTrace();}servlet端代碼示例 public void service(HttpServletRequest req, HttpServletResponse res)throws ServletException, IOException {res.setContentType(" text/plain ");InputStream inputStream = null;try {inputStream = res.getInputStream();//把輸入流inputStream保存到文件路徑為srcFile的文件中writefile(srcFile, inputStream);} catch (IOException e) {e.printStackTrace();}} // end service

      總結(jié):在文件的傳輸中是流的形式存在的,在硬盤上是文件的形式存在的。我們要做的只是通過HttpServletRequest和HttpServletResponse,或者是response和request來發(fā)送流和讀取流。以及把文件轉(zhuǎn)換成流或把流轉(zhuǎn)換成文件的操作。

      分享:對比JSF在Eclipse和NetBeans中的應(yīng)用
        安裝方面   安裝NetBeans是一件很容易的事情。你可以選擇基本(Basic)、標(biāo)準(zhǔn)(Standard)、完全(Full)三個版本中的任何一個下載安裝。等待NetBeans和GlassFish成功安裝后,我們

      來源:模板無憂//所屬分類:JSP教程/更新時(shí)間:2008-08-22
      相關(guān)JSP教程