佳木斯湛栽影视文化发展公司

主頁(yè) > 知識(shí)庫(kù) > JSP開(kāi)發(fā)之Struts2實(shí)現(xiàn)下載功能的實(shí)例

JSP開(kāi)發(fā)之Struts2實(shí)現(xiàn)下載功能的實(shí)例

熱門(mén)標(biāo)簽:阿里云 科大訊飛語(yǔ)音識(shí)別系統(tǒng) 團(tuán)購(gòu)網(wǎng)站 Linux服務(wù)器 電子圍欄 Mysql連接數(shù)設(shè)置 服務(wù)器配置 銀行業(yè)務(wù)

JSP開(kāi)發(fā)之Struts2實(shí)現(xiàn)下載功能的實(shí)例

1、Action 類(lèi)

package com.favccxx.strutsdemo; 
 
import java.io.File; 
import java.io.FileInputStream; 
import java.io.InputStream; 
 
import com.opensymphony.xwork2.ActionSupport; 
 
public class DownloadAction extends ActionSupport { 
 
   
  private static final long serialVersionUID = -7758584364932001138L; 
   
  private InputStream inputStream; 
 
  @Override 
  public String execute() throws Exception { 
     inputStream = new FileInputStream(new File("D:\\芒果豆.jpg")); 
     return SUCCESS; 
  } 
 
  public InputStream getInputStream() { 
    return inputStream; 
  } 
 
  public void setInputStream(InputStream inputStream) { 
    this.inputStream = inputStream; 
  } 
   
   
 
} 

2、struts.xml

?xml version="1.0" encoding="UTF-8" ?> 
!DOCTYPE struts PUBLIC 
  "-//Apache Software Foundation//DTD Struts Configuration 2.3//EN" 
  "http://struts.apache.org/dtds/struts-2.3.dtd"> 
 
struts> 
 
  constant name="struts.enable.DynamicMethodInvocation" value="false" /> 
  constant name="struts.devMode" value="true" /> 
 
  package name="default" namespace="/" extends="struts-default"> 
 
    default-action-ref name="index" /> 
 
    global-results> 
      result name="error">/error.jsp/result> 
    /global-results> 
 
    global-exception-mappings> 
      exception-mapping exception="java.lang.Exception" result="error"/> 
    /global-exception-mappings> 
 
    action name="index"> 
      result type="redirectAction"> 
        param name="actionName">HelloWorld/param> 
        param name="namespace">/example/param> 
      /result> 
    /action> 
     
    action name="download" class="com.favccxx.strutsdemo.DownloadAction"> 
      result name="success" type="stream"> 
        param name="contentType">application/octet-stream/param> 
        param name="inputName">inputStream/param> 
        param name="contentDisposition">attachment;filename="mongo.jpg"/param> 
        param name="bufferSize">1024/param> 
      /result> 
    /action> 
  /package> 
 
/struts> 

3、web.xml

?xml version="1.0" encoding="UTF-8"?> 
web-app id="WebApp_9" version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" 
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
  xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"> 
 
  display-name>Struts Blank/display-name> 
 
  filter> 
    filter-name>struts2/filter-name> 
    filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter/filter-class> 
  /filter> 
 
  filter-mapping> 
    filter-name>struts2/filter-name> 
    url-pattern>/*/url-pattern> 
  /filter-mapping> 
 
  welcome-file-list> 
    welcome-file>index.html/welcome-file> 
  /welcome-file-list> 
 
/web-app> 

4、JSP

a href="/download" rel="external nofollow" >無(wú)注解下載/a> 

以上就是JSP實(shí)現(xiàn)下載功能的實(shí)例代碼,如有疑問(wèn)請(qǐng)留言或者到本站社區(qū)交流討論,感謝閱讀,希望能幫助到大家,謝謝大家對(duì)本站的支持!

您可能感興趣的文章:
  • struts2實(shí)現(xiàn)簡(jiǎn)單文件下載功能
  • struts2實(shí)現(xiàn)文件下載功能
  • java中Struts2 的文件上傳和下載示例
  • Struts2實(shí)現(xiàn)文件下載功能代碼分享(文件名中文轉(zhuǎn)碼)
  • java中struts2實(shí)現(xiàn)簡(jiǎn)單的文件上傳與下載
  • java中struts2實(shí)現(xiàn)文件上傳下載功能
  • JavaWeb中struts2實(shí)現(xiàn)文件上傳下載功能實(shí)例解析
  • JavaEE中struts2實(shí)現(xiàn)文件上傳下載功能實(shí)例解析
  • java中struts2實(shí)現(xiàn)文件上傳下載功能實(shí)例解析
  • struts2實(shí)現(xiàn)文件下載功能

標(biāo)簽:棗莊 大理 廣元 江蘇 衡水 蚌埠 萍鄉(xiāng) 衢州

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《JSP開(kāi)發(fā)之Struts2實(shí)現(xiàn)下載功能的實(shí)例》,本文關(guān)鍵詞  ;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 收縮
    • 微信客服
    • 微信二維碼
    • 電話(huà)咨詢(xún)

    • 400-1100-266
    兴安盟| 甘洛县| 嵊州市| 百色市| 汶川县| 普定县| 德保县| 闸北区| 彝良县| 万安县| 疏附县| 秭归县| 苗栗市| 宜都市| 忻州市| 徐汇区| 广德县| 巨野县| 卢氏县| 灵宝市| 新郑市| 陆良县| 宜宾市| 开封县| 于都县| 闸北区| 兴海县| 华阴市| 湖北省| 兖州市| 江北区| 汨罗市| 太原市| 宣汉县| 河西区| 沙坪坝区| 芜湖县| 屏山县| 赞皇县| 右玉县| 阿拉善盟|