0

我有包含电子邮件输入的页面。我的目标是在服务器端进行验证。现在我的验证码如下:

public ActionErrors validate(ActionMapping mapping, HttpServletRequest request) {

        ActionErrors errors = new ActionErrors();

            if(this.name == null || this.name.trim().equals(""))
                errors.add("name", new ActionMessage("errors.required","Name"));
            if(this.email == null || this.email.trim().equals(""))
                errors.add("email", new ActionMessage("errors.required","Email"));
            if(this.city == null || this.city.trim().equals(""))
                errors.add("city", new ActionMessage("errors.required","City"));           
               if(this.country == null || this.country.trim().equals(""))
                errors.add("country", new ActionMessage("errors.required","Country")); 
                return errors;   
    }

我知道我可以在 validate 方法中使用正则表达式进行电子邮件验证。在 Struts 提供的验证方法中,是否有任何不同的方法来验证电子邮件、ip 等字段?但是由于验证必须严格在 validate 方法中的限制。谢谢

4

1 回答 1

0

commons-validator可以帮助您实现您想要做的事情。

验证:

  • 电子邮件:org.apache.commons.validator.EmailValidator
  • ip:org.apache.commons.validator.routines.InetAddressValidator
  • ...
于 2013-07-29T15:44:50.190 回答