20160501--struts2入門2

破玉發表於2016-05-01

一、Action名稱的搜尋順序

1.獲得請求路徑的URI,例如url是:http://server/struts2/path1/path2/path3/test.action
 
2.首先尋找namespace為/path1/path2/path3的package,如果不存在這個package則執行步驟3;如果存在這個package,則在這個package中尋找名字為test的action,當在該package下尋找不到action 時就會直接跑到預設namaspace的package裡面去尋找action(預設的名稱空間為空字串“” ) ,如果在預設namaspace的package裡面還尋找不到該action,頁面提示找不到action
 
3.尋找namespace為/path1/path2的package,如果不存在這個package,則轉至步驟4;如果存在這個package,則在這個package中尋找名字為test的action,當在該package中尋找不到action 時就會直接跑到預設namaspace的package裡面去找名字為test的action ,在預設namaspace的package裡面還尋找不到該action,頁面提示找不到action
 
4.尋找namespace為/path1的package,如果不存在這個package則執行步驟5;如果存在這個package,則在這個package中尋找名字為test的action,當在該package中尋找不到action 時就會直接跑到預設namaspace的package裡面去找名字為test的action ,在預設namaspace的package裡面還尋找不到該action,頁面提示找不到action
 
5.尋找namespace為/的package,如果存在這個package,則在這個package中尋找名字為test的action,當在package中尋找不到action或者不存在這個package時,都會去預設namaspace的package裡面尋找action,如果還是找不到,頁面提示找不到action。
 
二、Action配置中的各項預設值
<package name="itcast" namespace="/test" extends="struts-default">
        <action name="helloworld" class="cn.itcast.action.HelloWorldAction" method="execute" >
    <result name="success">/WEB-INF/page/hello.jsp</result>
        </action>
  </package
1>如果沒有為action指定class,預設是ActionSupport。
2>如果沒有為action指定method,預設執行action中的execute() 方法。
3>如果沒有指定result的name屬性,預設值為success。
 
 三、Action中result的各種轉發型別
<action name="helloworld" class="cn.itcast.action.HelloWorldAction">
    <result name="success">/WEB-INF/page/hello.jsp</result>
</action>
result配置類似於struts1中的forward,但struts2中提供了多種結果型別,常用的型別有: dispatcher(預設值)、 redirect 、 redirectAction 、 plainText。
 
在result中還可以使用${屬性名}表示式訪問action中的屬性,表示式裡的屬性名對應action中的屬性。如下:
<result type="redirect">/view.jsp?id=${id}</result>

 

 
下面是redirectAction 結果型別的例子,如果重定向的action中同一個包下:
<result type="redirectAction">helloworld</result>
如果重定向的action在別的名稱空間下:
<result type="redirectAction">
    <param name="actionName">helloworld</param>
    <param name="namespace">/test</param>
</result>
plaintext:顯示原始檔案內容,例如:當我們需要原樣顯示jsp檔案原始碼 的時候,我們可以使用此型別。
 
<result name="source" type="plainText ">
    <param name="location">/xxx.jsp</param>
    <param name="charSet">UTF-8</param><!-- 指定讀取檔案的編碼 -->
</result>
多個Action共享一個檢視--全域性result配置
當多個action中都使用到了相同檢視,這時我們應該把result定義為全域性檢視。struts1中提供了全域性forward,struts2中也提供了相似功能:
 
<package ....>
    <global-results>
        <result name="message">/message.jsp</result>
    </global-results>
</package>

 

我的程式碼保留:

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC
    "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
    "http://struts.apache.org/dtds/struts-2.0.dtd">

<struts>
    <!--  全域性包,供繼承使用,各個包訪問全檢視-->
    <package name="base" extends="struts-default">
        <global-results>
            <result name="message">/WEB-INF/page/message.jsp</result>
        </global-results>
    </package>
    
    <package name="dzq" namespace="/test" extends="struts-default">
        <!-- 全域性檢視配置, 包內訪問 -->
        <global-results>
            <result name="message">/WEB-INF/page/message.jsp</result>
        </global-results>

        <!-- 在action中返回檢視,包內訪問 -->
        <action name="manager" class="com.dzq.action.HelloWorldAction"
            method="add">
        </action>

        <action name="helloworld" class="com.dzq.action.HelloWorldAction"
            method="execute">
            <!-- 預設是伺服器請求轉發 -->
            <result name="success">/WEB-INF/page/hello.jsp</result>
        </action>

        <!-- action的各項預設值 ,不指定屬性,使用預設值 -->
        <action name="addUI">
            <result>/WEB-INF/page/employeeAdd.jsp</result>
        </action>


        <!-- 瀏覽器重定向 指定type屬性 -->
        <!-- <action name="redirect"> <result type="redirect">/employeeAdd.jsp?username=${username}</result> 
            </action> -->

        <!-- 帶引數的請求重定向 使用ognl表示式${} 引數有中文,在Action中URLEncoder對中文進行編碼 -->
        <action name="list" class="com.dzq.action.HelloWorldAction"
            method="execute">
            <result name="success" type="redirect">/employeeAdd.jsp?username=${username}
            </result>
        </action>

        <!-- 請求重定向到同一個包下的Action,eg: list ,兩次重定向 -->
        <action name="redirectAction">
            <result type="redirectAction">list</result>
        </action>

        <!-- 請求重定向到不同包下的Action,使用屬性param,為屬性注入值eg:hello -->
        <action name="redirectAction1">
            <result type="redirectAction">
                <param name="actionName">hello</param>
                <param name="namespace">/test1</param>
            </result>
        </action>


        <!-- 顯示檢視的原始碼,指定type值為plainText <action name="plainText"> <result type="plainText">/index.jsp</result> 
            </action> -->
        <!-- 顯示檢視的原始碼,原始碼中有中文,需要用param為其指定屬性,指定type值為plainText -->
        <action name="plainText">
            <result type="plainText">
                <param name="location">/index.jsp</param>
                <param name="charSet">UTF-8</param><!-- 指定讀取檔案的編碼 -->
            </result>
        </action>
    </package>

    <package name="other" namespace="/test1" extends="base">
        <action name="hello">
            <result>/WEB-INF/page/hello.jsp</result>
        </action>
        <!-- 在action中返回檢視,包外訪問 -->
    <action name="manager1" class="com.dzq.action.HelloWorldAction"
        method="add">
    </action>
    </package>
    
</struts>

 

 四、 為Action的屬性注入值

Struts2為Action中的屬性提供了依賴注入功能,在struts2的配置檔案中,我們可以很方便地為Action中的屬性注入值。注意:屬性必須提供setter方法。
 
public class HelloWorldAction{
    private String savePath;

    public String getSavePath() {
        return savePath;
    }
    public void setSavePath(String savePath) {
        this.savePath = savePath;
    }
       ......
}
<package name="itcast" namespace="/test" extends="struts-default">
    <action name="helloworld" class="cn.itcast.action.HelloWorldAction" >
        <param name="savePath">/images</param>
        <result name="success">/WEB-INF/page/hello.jsp</result>
    </action>
</package>
上面通過<param>節點為action的savePath屬性注入“/images”
 
五、指定需要Struts 2處理的請求字尾
前面我們都是預設使用.action字尾訪問Action。其實預設字尾是可以通過常量”struts.action.extension“進行修改的,例如:我們可以配置Struts 2只處理以.do為字尾的請求路徑:
 
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts PUBLIC
    "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
    "http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
    <constant name="struts.action.extension" value="do"/>
</struts>
如果使用者需要指定多個請求字尾,則多個字尾之間以英文逗號(,)隔開。如:
 
<constant name="struts.action.extension" value="do,go"/>

六、細說常量定義

 

常量可以在struts.xml或struts.properties中配置,建議在struts.xml中配置,兩種配置方式如下:
struts.xml檔案中配置常量
 
<struts>
    <constant name="struts.action.extension" value="do"/>
</struts>
struts.properties中配置常量
 
struts.action.extension=do
因為常量可以在下面多個配置檔案中進行定義,所以我們需要了解struts2載入常量的搜尋順序:
struts-default.xml
struts-plugin.xml
struts.xml
struts.properties
web.xml
如果在多個檔案中配置了同一個常量,則後一個檔案中配置的常量值會覆蓋前面檔案中配置的常量值.
 
常用的常量介紹:
<!-- 指定預設編碼集,作用於HttpServletRequest的setCharacterEncoding方法 和freemarker 、velocity的輸出 -->
    <constant name="struts.i18n.encoding" value="UTF-8"/>
    <!-- 該屬性指定需要Struts 2處理的請求字尾,該屬性的預設值是action,即所有匹配*.action的請求都由Struts2處理。
    如果使用者需要指定多個請求字尾,則多個字尾之間以英文逗號(,)隔開。 -->
    <constant name="struts.action.extension" value="do"/>
    <!-- 設定瀏覽器是否快取靜態內容,預設值為true(生產環境下使用),開發階段最好關閉 -->
    <constant name="struts.serve.static.browserCache" value="false"/>
    <!-- 當struts的配置檔案修改後,系統是否自動重新載入該檔案,預設值為false(生產環境下使用),開發階段最好開啟 -->
    <constant name="struts.configuration.xml.reload" value="true"/>
    <!-- 開發模式下使用,這樣可以列印出更詳細的錯誤資訊 -->
    <constant name="struts.devMode" value="true" />
     <!-- 預設的檢視主題 -->
    <constant name="struts.ui.theme" value="simple" />
    <!– 與spring整合時,指定由spring負責action物件的建立 -->
    <constant name="struts.objectFactory" value="spring" />
    <!–該屬性設定Struts 2是否支援動態方法呼叫,該屬性的預設值是true。如果需要關閉動態方法呼叫,則可設定該屬性為false。 -->
<constant name="struts.enable.DynamicMethodInvocation" value="false"/>
 <!--上傳檔案的大小限制-->
<constant name="struts.multipart.maxSize" value=“10701096"/>

 

七、Struts2的處理流程
StrutsPrepareAndExecuteFilter是Struts 2框架的核心控制器,它負責攔截由<url-pattern>/*</url-pattern>指定的所有使用者請求,當使用者請求到達時,該Filter會過濾使用者的請求。預設情況下,如果使用者請求的路徑不帶字尾或者字尾以.action結尾,這時請求將被轉入Struts 2框架處理,否則Struts 2框架將略過該請求的處理。當請求轉入Struts 2框架處理時會先經過一系列的攔截器,然後再到Action。與Struts1不同,Struts2對使用者的每一次請求都會建立一個Action,所以Struts2中的Action是執行緒安全的。
 
八、為應用指定多個struts配置檔案
在大部分應用裡,隨著應用規模的增加,系統中Action的數量也會大量增加,導致struts.xml配置檔案變得非常臃腫。為了避免struts.xml檔案過於龐大、臃腫,提高struts.xml檔案的可讀性,我們可以將一個struts.xml配置檔案分解成多個配置檔案,然後在struts.xml檔案中包含其他配置檔案。下面的struts.xml通過<include>元素指定多個配置檔案:
 
 
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts PUBLIC
    "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
    "http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
    <include file="struts-user.xml"/>
    <include file="struts-order.xml"/>
</struts>
通過這種方式,我們就可以將Struts 2的Action按模組新增在多個配置檔案中。
 

 九、使用萬用字元定義action

 

<package name="itcast" namespace="/test" extends="struts-default">
    <action name="helloworld_*" class="cn.itcast.action.HelloWorldAction" method="{1}">
        <result name="success">/WEB-INF/page/hello.jsp</result>
    </action>
</package>

 

public class HelloWorldAction{
    private String message;
    ....
    public String execute() throws Exception{
        this.message = "我的第一個struts2應用";
        return "success";
    }
    
    public String other() throws Exception{
        this.message = "第二個方法";
        return "success";
    }
}
要訪問other()方法,可以通過這樣的URL訪問:/test/helloworld_other.action
 
我的程式碼保留:
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC
    "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
    "http://struts.apache.org/dtds/struts-2.0.dtd">

<struts>
  
    <!-- 指定訪問字尾 -->
    <constant name="struts.action.extension" value="do,action"/>
    <package name="department" namespace="/test/department" extends="struts-default">
        <action name="helloworld" class="com.dzq.action.HelloWorldAction"
            method="execute">
            <param name="savepath">department</param>
            <!-- 預設是伺服器請求轉發 -->
            <result name="success">/WEB-INF/page/message.jsp</result>
        </action>
        <!--使用萬用字元訪問  -->
        <action name="list_*" class="com.dzq.action.HelloWorldAction" method="{1}">
            <result name="success">/WEB-INF/page/message.jsp</result>
        </action>
    </package>
    <!-- 包含其他配置檔案
    <include file="department.xml"/>
    <include file="employee.xml"/>
    -->
</struts>

 十、接收請求引數

採用基本型別接收請求引數(get/post)
 
在Action類中定義與請求引數同名的屬性,struts2便能自動接收請求引數並賦予給同名屬性。
請求路徑: http://localhost:8080/test/view.action?id=78
 
public class ProductAction {
      private Integer id;
      public void setId(Integer id) {//struts2通過反射技術呼叫與請求引數同名的屬性的setter方法來獲取請求引數值
             this.id = id;
      }
      public Integer getId() {return id;}
  }
採用複合型別接收請求引數

 

請求路徑: http://localhost:8080/test/view.action?product.id=78
public class ProductAction {
   private Product product;
   public void setProduct(Product product) {  this.product = product;  }
   public Product getProduct() {return product;}
}
Struts2首先通過反射技術呼叫Product的預設構造器建立product物件,然後再通過反射技術呼叫product中與請求引數同名的屬性的setter方法來獲取請求引數值。
 
關於struts2.1.6接收中文請求引數亂碼問題
 
struts2.1.6版本中存在一個Bug,即接收到的中文請求引數為亂碼(以post方式提交),原因是struts2.1.6在獲取並使用了請求引數後才呼叫HttpServletRequest的setCharacterEncoding()方法進行編碼設定 ,導致應用使用的就是亂碼請求引數。這個bug在struts2.1.8中已經被解決,如果你使用的是struts2.1.6,要解決這個問題,你可以這樣做:新建一個Filter,把這個Filter放置在Struts2的Filter之前,然後在doFilter()方法裡新增以下程式碼
public void doFilter(...){
    HttpServletRequest req = (HttpServletRequest) request;
    req.setCharacterEncoding("UTF-8");//應根據你使用的編碼替換UTF-8
    filterchain.doFilter(request, response);
}

我的程式碼保留:

package com.dzq.domian;

public class Person {
    private int id;
    private String name;
    
    
    
    
    
    public int getId() {
        return id;
    }

    public void setId(int id) {
        this.id = id;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

}
Person
package com.dzq.action;

import java.util.Date;

import com.dzq.domian.Person;

public class HelloWorldAction {

    private int id;
    private String name;
    private Date birthday;
    private Person person;
    
    
    
    public Date getBirthday() {
        return birthday;
    }

    public void setBirthday(Date birthday) {
        System.out.println(birthday);
        this.birthday = birthday;
    }

    public Person getPerson() {
        return person;
    }

    public void setPerson(Person person) {
        this.person = person;
    }

    public int getId() {
        return id;
    }

    public void setId(int id) {
        this.id = id;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public String addUI() {
        return "success";
    }

    public String execute() throws Exception {
        return "success";
    }

}
HelloWorldAction
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC
    "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
    "http://struts.apache.org/dtds/struts-2.0.dtd">

<struts>
  
    <!-- 指定訪問字尾 -->
    <constant name="struts.action.extension" value="do,action"/>
    <package name="department" namespace="/test/department" extends="struts-default">
        <action name="helloworld" class="com.dzq.action.HelloWorldAction"
            method="execute">
            <param name="savepath">department</param>
            <!-- 預設是伺服器請求轉發 -->
            <result name="success">/WEB-INF/page/message.jsp</result>
        </action>
        <!--使用萬用字元訪問  -->
        <action name="list_*" class="com.dzq.action.HelloWorldAction" method="{1}">
            <result name="success">/WEB-INF/page/message.jsp</result>
        </action>
    </package>
</struts>
struts.xml
<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>
<form action="${pageContext.request.contextPath }/test/department/list_addUI.do" method="post">
id:<input type="text" name="person.id"/><br>
name:<input type="text" name="person.name">
<input type="submit" value="提交"/>
</form>
</body>
</html>
index.jsp

 十一、自定義型別轉換器

 

java.util.Date型別的屬性可以接收格式為2009-07-20的請求引數值。但如果我們需要接收格式為20091221的請求引數,我們必須定義型別轉換器,否則struts2無法自動完成型別轉換。
 
import java.util.Date;
public class HelloWorldAction {
    private Date createtime;

    public Date getCreatetime() {
        return createtime;
    }

    public void setCreatetime(Date createtime) {
        this.createtime = createtime;
    }
}
public class DateConverter extends DefaultTypeConverter {
                @Override  public Object convertValue(Map context, Object value, Class toType) {
    SimpleDateFormat dateFormat = new SimpleDateFormat("yyyyMMdd");
    try { 
        if(toType == Date.class){//當字串向Date型別轉換時
            String[] params = (String[]) value;// Request.getParameterValues() 
            return dateFormat.parse(params[0]);
        }else if(toType == String.class){//當Date轉換成字串時
            Date date = (Date) value;
            return dateFormat.format(date);
        }
    } catch (ParseException e) {}
    return null;
    }
}
將上面的型別轉換器註冊為區域性型別轉換器:
在Action類所在的包下放置ActionClassName-conversion.properties檔案,ActionClassName是Action的類名,後面的-conversion.properties是固定寫法,對於本例而言,檔案的名稱應為HelloWorldAction-conversion.properties 。在properties檔案中的內容為:
屬性名稱=型別轉換器的全類名
對於本例而言, HelloWorldAction-conversion.properties檔案中的內容為:
createtime= cn.itcast.conversion.DateConverter
 
將上面的型別轉換器註冊為全域性型別轉換器:
在WEB-INF/classes下放置xwork-conversion.properties檔案 。在properties檔案中的內容為:
待轉換的型別=型別轉換器的全類名
對於本例而言, xwork-conversion.properties檔案中的內容為:
java.util.Date= cn.itcast.conversion.DateConverter
 
十二、訪問或新增request/session/application屬性
public String scope() throws Exception{
   ActionContext ctx = ActionContext.getContext();
   ctx.getApplication().put("app", "應用範圍");//往ServletContext裡放入app
   ctx.getSession().put("ses", "session範圍");//往session裡放入ses
   ctx.put("req", "request範圍");//往request裡放入req
   return "scope";
}
<body>
    ${applicationScope.app} <br>
    ${sessionScope.ses}<br>
    ${requestScope.req}<br>
 </body>
獲取HttpServletRequest / HttpSession / ServletContext / HttpServletResponse物件
方法一,通過ServletActionContext.類直接獲取:
 
public String rsa() throws Exception{
    HttpServletRequest request = ServletActionContext.getRequest();
    ServletContext servletContext = ServletActionContext.getServletContext();
    request.getSession()     
    HttpServletResponse response = ServletActionContext.getResponse();
    return "scope";
}
方法二,實現指定介面,由struts框架執行時注入:
public class HelloWorldAction implements ServletRequestAware, ServletResponseAware, ServletContextAware{
    private HttpServletRequest request;
    private ServletContext servletContext;
    private HttpServletResponse response;
    public void setServletRequest(HttpServletRequest req) {
        this.request=req;
    }
    public void setServletResponse(HttpServletResponse res) {
        this.response=res;
    }
    public void setServletContext(ServletContext ser) {
        this.servletContext=ser;
    }
}

我的程式碼保留:

package com.dzq.type.converter;

import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Map;

import com.opensymphony.xwork2.conversion.impl.DefaultTypeConverter;

public class DateTypeConverter extends DefaultTypeConverter {

    
    @Override
    public Object convertValue(Map<String, Object> context, Object value,
            Class toType) {
        SimpleDateFormat dateFormat=new SimpleDateFormat("yyyyMMdd");
        try {
            if(toType==Date.class){
                String [] params=(String[]) value;
                return dateFormat.parse(params[0]);
            }else if(toType==String.class){
                Date date=(Date) value;
                return dateFormat.format(date);
            }
        } catch (Exception e) {
            e.printStackTrace();
        }
        return null;
    }
}

 

package com.dzq.action;

import javax.servlet.ServletContext;
import javax.servlet.http.HttpServletRequest;
import org.apache.struts2.ServletActionContext;

import com.opensymphony.xwork2.ActionContext;

public class HelloWorldAction {
    public String execute () {
           ActionContext ctx = ActionContext.getContext();
           ctx.getApplication().put("app", "應用範圍");//往ServletContext裡放入app
           ctx.getSession().put("ses", "session範圍");//往session裡放入ses
           ctx.put("req", "request範圍");//往request裡放入req
           return "message";
        }
    
    public String rsa() throws Exception{
        HttpServletRequest request = ServletActionContext.getRequest();
        ServletContext servletContext = ServletActionContext.getServletContext();
        request.setAttribute("hello", "request域");
        request.getSession().setAttribute("hello", "session域");
        servletContext.setAttribute("hello", "application域");
        return "message";
    }


}
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC
    "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
    "http://struts.apache.org/dtds/struts-2.0.dtd">

<struts>
  
    <!-- 指定訪問字尾 -->
    <constant name="struts.action.extension" value="do,action"/>
    <package name="department" namespace="/test/department" extends="struts-default">
        <action name="helloworld" class="com.dzq.action.HelloWorldAction"
            method="execute">
            <result name="success">/WEB-INF/page/message.jsp</result>
        </action>
        <!--使用萬用字元訪問  -->
        <action name="list_*" class="com.dzq.action.HelloWorldAction" method="{1}">
            <result name="message">/WEB-INF/page/message.jsp</result>
        </action>
    </package>
</struts>

 

 十三、檔案上傳
第一步:在WEB-INF/lib下加入commons-fileupload-1.2.1.jarcommons-io-1.3.2.jar。這兩個檔案可以從http://commons.apache.org/下載。
 
第二步:把form表的enctype設定為:multipart/form-data,如下:
 
<form enctype="multipart/form-data" action="${pageContext.request.contextPath}/xxx.action" method="post">
  <input  type="file" name="uploadImage">
</form>
第三步:在Action類中新增以下屬性,屬性紅色部分對應於表單中檔案欄位的名稱
 
public class HelloWorldAction{
  private File uploadImage;//得到上傳的檔案
  private String uploadImageContentType;//得到檔案的型別
  private String uploadImageFileName;//得到檔案的名稱
  //這裡略省了屬性的getter/setter方法
  public String upload() throws Exception{
    String realpath = ServletActionContext.getServletContext().getRealPath("/images");
    File file = new File(realpath);
    if(!file.exists()) file.mkdirs();
    FileUtils.copyFile(uploadImage, new File(file, uploadImageFileName));
    return "success";
  }
}
多檔案上傳
第一步:在WEB-INF/lib下加入commons-fileupload-1.2.1.jarcommons-io-1.3.2.jar。這兩個檔案可以從http://commons.apache.org/下載。
 
第二步:把form表的enctype設定為:multipart/form-data,如下
<form enctype="multipart/form-data" action="${pageContext.request.contextPath}/xxx.action" method="post">
  <input  type="file" name="uploadImages">
  <input  type="file" name="uploadImages">
</form>

 

 

第三步:在Action類中新增以下屬性,屬性紅色部分對應於表單中檔案欄位的名稱
 
public class HelloWorldAction{
  private File[] uploadImages;//得到上傳的檔案
  private String[] uploadImagesContentType;//得到檔案的型別
  private String[] uploadImagesFileName;//得到檔案的名稱
  //這裡略省了屬性的getter/setter方法
  public String upload() throws Exception{
    String realpath = ServletActionContext.getServletContext().getRealPath("/images");
    File file = new File(realpath);
    if(!file.exists()) file.mkdirs();
    for(int i=0 ;i<uploadImages.length; i++){ File uploadImage = uploadImages[i];
    FileUtils.copyFile(uploadImage, new File(file, uploadImagesFileName[i]));
}
    return "success";
  }}

我的程式碼保留:

package com.dzq.action;

import java.io.File;

import org.apache.commons.io.FileUtils;
import org.apache.struts2.ServletActionContext;

import com.opensymphony.xwork2.ActionContext;

public class FileUploadAction {
    private File image;
    private String imageFileName;
    private File[] image1;
    private String []image1FileName;
    

    public String getImageFileName() {
        return imageFileName;
    }

    public void setImageFileName(String imageFileName) {
        this.imageFileName = imageFileName;
    }

    public File getImage() {
        return image;
    }

    public void setImage(File image) {
        this.image = image;
    }

    
    public File[] getImage1() {
        return image1;
    }

    public void setImage1(File[] image1) {
        this.image1 = image1;
    }

    public String[] getImage1FileName() {
        return image1FileName;
    }

    public void setImage1FileName(String[] image1Filename) {
        this.image1FileName = image1Filename;
    }

    public String execute()  throws Exception{
        String savepath=ServletActionContext.getServletContext().getRealPath("/images");
        System.out.println(savepath);
        if(image!=null){
        File savefile=new File(new File(savepath),imageFileName);
        if(!savefile.getParentFile().exists()){
            savefile.getParentFile().mkdirs();
        }
        FileUtils.copyFile(image,savefile);
        ActionContext.getContext().put("message", "上傳成功");
        }
        return "upload";
    }
    
    public String manyexecute()  throws Exception{
        String savepath=ServletActionContext.getServletContext().getRealPath("/images");
        System.out.println(savepath);
        if(image1!=null){
            File savedir=new File(savepath);
            if(!savedir.getParentFile().exists()){
                savedir.getParentFile().mkdirs();
            }
        for(int i=0;i<image1.length;i++){
            File savefile=new File(savedir,image1FileName[i]);
            FileUtils.copyFile(image1[i],savefile);
            
        }
        ActionContext.getContext().put("message", "上傳成功");
        }
        return "upload1";
    }
}
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC
    "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
    "http://struts.apache.org/dtds/struts-2.0.dtd">

<struts>
  
    <!-- 指定訪問字尾 -->
    <constant name="struts.action.extension" value="do,action"/>
    <!-- 設定檔案上傳大小限制 -->
    <constant name="struts.multipart.maxSize" value="10701096"/>
    <package name="department" namespace="/test/department" extends="struts-default">
        <action name="helloworld" class="com.dzq.action.HelloWorldAction"
            method="execute">
            <result name="success">/WEB-INF/page/message.jsp</result>
        </action>
        <!--使用萬用字元訪問  -->
        <action name="list_*" class="com.dzq.action.HelloWorldAction" method="{1}">
            <result name="message">/WEB-INF/page/message.jsp</result>
        </action>
        <action name="upload" class="com.dzq.action.FileUploadAction" method="execute">
              <result name="upload">/WEB-INF/page/message.jsp</result>
        </action>
         <action name="upload1" class="com.dzq.action.FileUploadAction" method="manyexecute">
              <result name="upload1">/WEB-INF/page/message.jsp</result>
        </action>
    </package>
</struts>
<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>
    <%-- <form action="${pageContext.request.contextPath }/test/department/list_addUI.do" method="post">
id:<input type="text" name="person.id"/><br>
name:<input type="text" name="person.name">

<input type="submit" value="提交"/>
</form> --%>
    <%-- <form
        action="${pageContext.request.contextPath }/test/department/upload.do"
        method="post" enctype="multipart/form-data">
        <input type="file" name="image" /> <input type="submit" value="上傳" />
    </form> --%>
    
    <form
        action="${pageContext.request.contextPath }/test/department/upload1.do"
        method="post" enctype="multipart/form-data">
        <input type="file" name="image1" /> <br>
        <input type="file" name="image1" /><br>
        <input type="file" name="image1" /><br>
        <input type="submit" value="上傳" />
    </form>
</body>
</html>