struts2+jsp實現檔案上傳的方法_JSP編程

來源:互聯網
上載者:User

本文執行個體講述了struts2+jsp實現檔案上傳的方法。分享給大家供大家參考。具體如下:

1. java代碼:

package com.wang.test;import java.io.InputStream;import org.apache.struts2.ServletActionContext;import com.opensymphony.xwork2.Action;import com.opensymphony.xwork2.ActionSupport;public class DownLoadPhoneFile extends ActionSupport{  ////getDownloadFile()方法返回的必須是InputStream。getResourceAsStream()方法可以通過流的方式將資源輸出   public InputStream getDownloadFile()  {    return ServletActionContext.getServletContext().getResourceAsStream("/upload/UserLogin_7.27.apk");  }  public String execute()  {    return Action.SUCCESS;  }  /*************【Struts2的檔案下載的實現方式】*********************************************/   //如果直接寫一個網站連結到所要下載的檔案上的話,對於有的時候,預設的會自動在瀏覽器裡面開啟   //這種情況非常不利於我們的檔案下載和許可權控制。因此,我們實現檔案下載時都不會採用這種方式   //我們所採用的是標準HTTP協議的方式,輸出二進位的流,導致瀏覽器認識這個流,它再進行檔案下載   //實際上這種方式是跟輸出有關的,當點擊下載連結時,會產生下載的一個資訊。它是跟result有關的   //所以就到struts-default.xml中查看<result-type/>結果類型   //其中<result-type name="stream" class="org.apache.struts2.dispatcher.StreamResult"/>   //事實上,這裡的StreamResult類是專門用來執行檔案下載的   /*************【每一次下載檔案時,控制台都會提示socket異常】***********************************/   //報錯資訊為java.net.SocketException:Connection reset by peer: socket write error   //下載本身也是socket操作,於是拋出該異常。實際上這個異常可以忽略掉。每次下載的時候,都會拋出該異常   //在getDownloadFile()方法上throws Exception之後,控制台上就不會再報告這個異常資訊啦   /*************【用於處理檔案下載的StreamResult類的原始碼片段】********************************/   //這裡顯示的是org.apache.struts2.dispatcher.StreamResult類的原始碼片段   //public class StreamResult extends StrutsResultSupport{     //protected String contentType = "text/plain";     //protected String contentLength;     //protected String contentDisposition = "inline";     //protected String inputName = "inputStream";     //protected InputStream inputStream;     //protected int bufferSize = 1024;   /*************【淺析StreamResult類的三個重要屬性】******************************************/   //這裡我們主要關注一下StreamResult類的三個屬性:contentType、contentDisposition、inputName   //這些屬性都是通過在struts.xml配置之後,由Struts2自動注入到對象裡面去的   //其中contentType用來指定下載的檔案的類型,contentDisposition用來指定下載檔案的名字   //另外bufferSize用來設定下載檔案時的緩衝區大小,預設為1KB,通常按照預設的1KB就可以了   //實際上這些屬性完全是根據HTTP協議得來的。HTTP協議就規定了下載檔案的時候,需要使用到這些屬性   //其中最關鍵的就是protected String inputName屬性,它是用來指定真正下載的檔案的IO流   //因此DownloadAction中必須返回一個輸入資料流。因為下載的時候,本身就是一個從伺服器端將檔案輸入過來的操作   /***************************************************************************************/ }

2. xml代碼如下:

<?xml version="1.0" encoding="UTF-8" ?><!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.1//EN" "http://struts.apache.org/dtds/struts-2.1.dtd"><struts>  <package name="default" extends="struts-default" namespace="/">    <action name="download" class="com.wang.test.DownLoadPhoneFile">      <result name="success" type="stream">        <param name="contentType">application/vnd.ms-powerpoint</param>        <param name="contentDisposition">attachment;filename="UserLogin_7.27.apk"</param>        <param name="inputName">downloadFile</param>      </result>    </action>  </package></struts>

3. JSP頁面代碼如下:

<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%><%String path = request.getContextPath();String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";%><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html> <head>  <base href="<%=basePath%>">  <title>My JSP 'index.jsp' starting page</title>  <meta http-equiv="pragma" content="no-cache">  <meta http-equiv="cache-control" content="no-cache">  <meta http-equiv="expires" content="0">    <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">  <meta http-equiv="description" content="This is my page"> </head> <body>  <input type="button" value="手機端安裝包下載" onclick="javascript:window.location='download.action';"/>  </body></html>

希望本文所述對大家的JSP程式設計有所協助。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.