What's a good technique for validating an e-mail address (e.g. from a user input field) in Android? org.apache.commons.validator.routines.EmailValidator doesn't seem to be available. Are there any other libraries doing this which are included in Android already or would I have to use RegExp?
|
|
Don't use a reg-ex. Apparently the following is a reg-ex that correctly validates most e-mails addresses that conform to RFC 2822, (and will still fail on things like "user@gmail.com.nospam", as will org.apache.commons.validator.routines.EmailValidator)
Possibly the easiest way to validate an e-mail to just send a confirmation e-mail to the address provided and it it bounces then it's not valid. If you want to perform some basic checks you could just check that it's in the form If you have some business logic specific validation then you could perform that using a regex, e.g. must be a gmail.com account or something. |
|||||||||
|
|
Another option is the built in Patterns starting with API Level 8:
|
|||||
|
|
Next pattern is used in K-9 mail:
So you can use function
|
|||||||||||||||
|
|
Since API 8 (android 2.2) there is a pattern: android.util.Patterns.EMAIL_ADDRESS http://developer.android.com/reference/android/util/Patterns.html So you can use it to validate yourEmailString:
returns true if the email is valid UPD: This pattern source code is:
So you can build it yourself for compatibility with API < 8. |
||||
|
|
|
You can use regular expression to do so. Something like the following.
Note: Check the regular expression given above, don't use it as it is. |
|||||
|
|
|||
|
|
|
Can I STRONGLY recommend you don't try to 'validate' email addresses, you'll just get yourself into a lot of work for no good reason. Just make sure what is entered won't break your own code - e.g. no spaces or illegal characters which might cause an Exception. Anything else will just cause you a lot of work for minimal return... |
|||||||||||
|
|
Try this simple method which can not accept the email address beginning with digits:
|
||||
|
|
|
I had the same problem in a work about a month before. Here's a nice regular expression based Javascript funcion.
I executed a verify(); function on the submission of a form, like this:
If verify(); function returned false, the form did not posted. p.s.: I have no idea what android is, but i saw a java tag near your question. A regex-based function in Java (including an extra escape for the backslash) is:
|
||||
|
The Linkify class has some pretty useful helper methods that might be relevant, including regular expressions designed to pick up phone numbers and email addresses and such: http://developer.android.com/reference/android/text/util/Linkify.html |
|||
|
|
|
Note that most of the regular expressions are not valid for international domain names (IDN) and new top level domains like .mobi or .info (if you check for country codes or .org, .com, .gov and so on). A valid check should separate the local part (before the at-sign) and the domain part. You should also consider the max length of the local part and domain (in sum 255 chars including the at-sign). The best approach is to transform the address in an IDN compatible format (if required), validate the local part (RFC), check the length of the address and the check the availability of the domain (DNS MX lookup) or simply send an email. |
||||
|
|
|
this is the simple best answer I found. |
|||
|
|
|
I have used follwing code.This works grate.I hope this will help you.
and use follwing method.This returns true if email is valid.
|
|||
|
|
|
email is your email-is.
|
|||
|
|
|
Simplest way of Email Validation.
|
||||
|
|
|
I have coded a small solution for the lack of a validation mechanism. You can find this at Android form validation. For the e-mail validation itself you can use the expression validator and add the expression yourself. There are many examples of such an e-mail expression out there. |
||||
|
|
|
For regex lovers, the very best (e.g. consistant with RFC 822) email's pattern I ever found since now is the following (before PHP supplied filters). I guess it's easy to translate this into Java - for those playing with API < 8 :
|
||||
|
|
|
We use TowerData webservice. It does also validate the existence of the address. There is a per validation fee but it's suitable for a business that needs to perform such validation. |
|||
|
|
|
Call This Method where you want to validate email ID.
|
|||
|
|




