輸入校驗(1)——struts2第三講

輸入校驗 表單提交css

注:本文系做者在看了浪曦的風中葉老師的struts2視頻的我的總結,但願能幫助廣大struts2的初學者。 

第一步: 
(這一步和其餘同樣,這裏從簡)依舊是新建一個web project,命名爲shuruxiaoayn,導入struts2必須的包。在src目錄下新建struts.xml,修改web.xml文件。 

第二步: 
將index.jsp更名爲regt.jsp(這個不是必須的,事實上也沒有必要,此處只是爲了便於稱呼)。reg.jap的代碼以下 

html

Jsp代碼  收藏代碼java

  1. <%@ page language="java" import="java.util.*" pageEncoding="GB18030"%>  web

  2. <%  apache

  3. String path = request.getContextPath();  框架

  4. String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";  jsp

  5. %>  ui

  6. <%@ taglib prefix="s"  uri="/struts-tags"%>  this

  7. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">  spa

  8. <html>  

  9.   <head>  

  10.     <base href="<%=basePath%>">  

  11.       

  12.     <title>My JSP 'index.jsp' starting page</title>  

  13.     <meta http-equiv="pragma" content="no-cache">  

  14.     <meta http-equiv="cache-control" content="no-cache">  

  15.     <meta http-equiv="expires" content="0">      

  16.     <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">  

  17.     <meta http-equiv="description" content="This is my page">  

  18.     <!--  

  19.     <link rel="stylesheet" type="text/css" href="styles.css">  

  20.     -->  

  21.   </head>  

  22.     

  23.   <body>  

  24.             <s:form action="reg" >  

  25.                     <s:textfield  name="username" label="username"></s:textfield>  

  26.                     <s:password name="password" label="password"></s:password>  

  27.                     <s:password name="repassword" label="repassword"></s:password>  

  28.                     <s:textfield name="age" label="age"></s:textfield>  

  29.                     <s:textfield name="birthday" label="birthday"></s:textfield>  

  30.                     <s:textfield name="graduation" label="graduation"></s:textfield>  

  31.                       

  32.                     <s:submit name="submit"></s:submit>  

  33.                     <s:reset name="reset"></s:reset>  

  34.             </s:form>  

  35.   

  36.   </body>  

  37. </html>  


第二步:action 
在src目錄下新建新建包com.action 在其中新建一個RegAction.java文件 
代碼以下 

Java代碼  收藏代碼

  1. package com.action;  

  2.   

  3. import java.util.Calendar;  

  4. import java.util.Date;  

  5.   

  6. import com.opensymphony.xwork2.ActionSupport;  

  7.   

  8. public class RegAction  extends ActionSupport  

  9.   

  10. {  

  11.         private String username;  

  12.         private String password;  

  13.         private String repassword;  

  14.         private int age;  

  15.         private Date birthday;  

  16.         private Date graduation;  

  17.           

  18.           

  19.         public String getUsername() {  

  20.             return username;  

  21.         }  

  22.         public void setUsername(String username) {  

  23.             this.username = username;  

  24.         }  

  25.         public String getPassword() {  

  26.             return password;  

  27.         }  

  28.         public void setPassword(String password) {  

  29.             this.password = password;  

  30.         }  

  31.         public String getRepassword() {  

  32.             return repassword;  

  33.         }  

  34.         public void setRepassword(String repassword) {  

  35.             this.repassword = repassword;  

  36.         }  

  37.         public int getAge() {  

  38.             return age;  

  39.         }  

  40.         public void setAge(int age) {  

  41.             this.age = age;  

  42.         }  

  43.         public Date getBirthday() {  

  44.             return birthday;  

  45.         }  

  46.         public void setBirthday(Date birthday) {  

  47.             this.birthday = birthday;  

  48.         }  

  49.         public Date getGraduation() {  

  50.             return graduation;  

  51.         }  

  52.         public void setGraduation(Date graduation) {  

  53.             this.graduation = graduation;  

  54.         }  

  55.           

  56.         public String execute() throws Exception  

  57.         {  

  58.             return  SUCCESS;  

  59.         }  

  60.           

  61.         public void validate()  

  62.         {  

  63.             System.out.println("已經調用了效驗方法");  

  64.             if(null == username || username.length() <6 || username.length() >10)  

  65.             {  

  66.                 this.addFieldError("username","username needs 6 to 10 chars");  

  67.             }  

  68.             if(null == password || password.length() <6 || password.length() >10)  

  69.             {  

  70.                 this.addFieldError("password""password needs 6 to 10 chars");  

  71.             }  

  72.             if(null == repassword || repassword.length() <6 || repassword.length() >10)  

  73.             {  

  74.                 this.addFieldError("repassword""repassword needs 6 to 10 chars");  

  75.             }  

  76.             ifnull != password || null !=repassword)  

  77.             {  

  78.                  if(  !password.equals(repassword) )  

  79.                  {  

  80.                      this.addFieldError("repassword""two pasword should be same");  

  81.                  }  

  82.             }  

  83.               

  84.             if(age <=0 || age >150)  

  85.             {  

  86.                 this.addFieldError("age""age should between 1 to 149");  

  87.             }  

  88.             if(null == birthday )  

  89.             {  

  90.                 this.addFieldError("birthday""birthday required");  

  91.             }  

  92.             if(null == graduation)  

  93.             {  

  94.                 this.addFieldError("graduation""graduation required");  

  95.             }  

  96.             if(null != birthday && null != graduation)  

  97.             {  

  98.                   Calendar c1 =Calendar.getInstance();  

  99.                    c1.setTime(birthday);  

  100.                      

  101.                    Calendar c2 = Calendar.getInstance();  

  102.                    c2.setTime(graduation);  

  103.                      

  104.                    if( !c1.before(c2))  

  105.                    {  

  106.                        this.addFieldError("birthday""birthday should be after the graduation");  

  107.                    }  

  108.                          

  109.             }  

  110.               

  111.               

  112.         }  

  113.           

  114.           

  115.           

  116.           

  117.           

  118. }  




第四步: 
在WebRoot目錄下新建另外一個視圖 success.jsp (此文件在這個效驗中基本沒有什麼做用) 

第五步:修改struts.xml文件 代碼惹下 

Xml代碼  收藏代碼

  1. <?xml version="1.0" encoding="utf-8" ?>  

  2. <!DOCTYPE struts PUBLIC  

  3.     "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"   

  4.     "struts.apache.org/dtds/struts-2.0.dtd">  

  5. <struts>  

  6.         <package name="shuruxiaoyan" extends="struts-default">  

  7.                 <action name="reg" class="com.action.RegAction">  

  8.                         <result name="success">/success.jsp</result>  

  9.                         <result name="input">/reg.jsp</result>  

  10.                 </action>  

  11.         </package>  

  12.   

  13. </struts>  



ok,到此,已經完成了最最基本的輸入校驗工做; 
運行界面會是以下: 
圖1 

 



圖2 

 


顯然。上面中圖2中有些信息不是咱們制定的,這是因爲輸入的數據沒有經過類型轉換形成的; 
固然,若是想讓出錯提示變得更友好些,在進行以下操做: 

第六步:配置屬性文件 
在對應的action目錄中新建一個RegAction.properties文件 過程以下 

1.新建這個文件 
2.打開jdk安裝目錄下的native2ascii應用程序 路徑通常相似 做者的目錄是 
O:\Program Files\Java\jdk1.6.0_10\bin\native2ascii 
在這個環境中,輸入如下三行 分別按回車 

invalid.fieldvalue.age=年齡格式有問題或類型轉化錯誤 
invalid.fieldvalue.birthday=出生日期格式有問題或類型轉換錯誤 
invalid.fieldvalue.graduation=畢業日期格式有問題或類型轉換錯誤 

會出現三行對應的Unicode代碼 放入剛剛創建的屬性文件便可: 
附圖 

 







好了 如今是弄好了較簡單的輸入校驗了 
預覽一下: 
當填寫以下表單時: 


 

完成後 

 

struts2的類型轉換——Struts2第二講 | Struts2輸入校驗2(框架效驗)———stru ...

相關文章
相關標籤/搜索