vote up 3 vote down star
2

What are the good email validation libraries for Java? Are there any alternatives to commons validator?

flag

5 Answers

vote up 2 vote down check

Apache Commons is generally known as a solid project. Keep in mind, though, you'll still have to send a verification email to the address if you want to ensure it's a real email, and that the owner wants it used on your site.

link|flag
I agree with the extra bits you cited, but are those part of the Commons Validation project? – duffymo Mar 9 at 0:33
vote up 2 vote down

What do you want to validate? The email address?

The email address can only be checked for its format conformance. See the standard: RFC2822. Best way to do that is a regular expression. You will never know if really exists without sending an email.

I checked the commons validator. It contains an org.apache.commons.validator.EmailValidator class. Seems to be a good starting point.

link|flag
vote up 1 vote down

Les Hazlewood has written a very thorough RFC 2822 compliant email validator class using Java regular expressions. You can find it at http://www.leshazlewood.com/?p=23. However, its thoroughness (or the Java RE implementation) leads to inefficiency - read the comments about parsing times for long addresses.

link|flag
vote up 0 vote down

If you're looking to verify whether an email address is valid, then VRFY will get you some of the way. I've found it's useful for validating intranet addresses (that is, email addresses for internal sites). However it's less useful for internet mail servers (see the caveats at the top of this page)

link|flag
vote up -1 vote down

Spring has wonderful validation classes. But I don't see what these or the Commons Validation have to do with e-mail. They're for general validation and binding of values, like HTTP request parameters, to objects. How do you connect them to e-mail? What are you validating? E-mail addresses can be validated with regular expressions. What else is there?

link|flag
Yes, they can be validated by regex, and in fact that is how Apache's EmailValidator does it (svn.apache.org/viewvc/commons/…) . But the point is, don't reinvent the wheel. – Matthew Flaschen Mar 9 at 0:09
"library" to validate an e-mail address? Sorry, it sounded like far more than that was required. I must have misinterpreted the question. – duffymo Mar 9 at 0:32
1  
I would hardly characterize redoing a regular expression as reinventing a wheel. There's another argument that says you'd be better off without the dependency on another 3rd party library. Our host Jeff Atwood agrees: codinghorror.com/blog/archives/… – duffymo Mar 9 at 13:07

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.