📄 enrolform.java
字号:
package com.vo.struts.form;
import javax.servlet.http.HttpServletRequest;
import org.apache.struts.action.ActionErrors;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionMapping;
import org.apache.struts.action.ActionMessage;
public class EnrolForm extends ActionForm {
private int id;
private String username;
private String password;
private String affirmPassword;
private String email;
public ActionErrors validate(ActionMapping mapping,
HttpServletRequest request) {
ActionErrors errors = new ActionErrors();
if (this.username == null || "".equals(this.username)) {
errors.add("username", new ActionMessage("username.null"));
} else {
if (this.username.length() < 4 || this.username.length() > 12) {
errors.add("username", new ActionMessage("userlength.null"));
}
}
if (this.password == null || "".equals(this.password)) {
errors.add("password", new ActionMessage("password.null"));
} else {
if (this.password.length() < 4 || this.password.length() > 32) {
errors
.add("password", new ActionMessage(
"passwordlength.null"));
}
}
if (this.email == null || "".equals(this.email)) {
errors.add("email", new ActionMessage("email.null"));
} else {
if (this.email.indexOf("@") == -1 || this.email.indexOf(".") == -1
|| this.email.equals("@") || this.email.length() < 6) {
errors.add("email", new ActionMessage("emailindexof.null"));
}
}
if (this.affirmPassword == this.password
|| this.affirmPassword.equals(this.password)) {
return errors;
} else {
errors.add("affirmPassword", new ActionMessage("affirmPassword"));
}
return errors;
}
public void reset(ActionMapping mapping, HttpServletRequest request) {
}
public String getAffirmPassword() {
return affirmPassword;
}
public void setAffirmPassword(String affirmPassword) {
this.affirmPassword = affirmPassword;
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -