|
How to validate Email in Java
Author: Venkata Sudhakar
The below example shows how to validate Email in Java
01 | package com.bethecoder.validations; |
03 | import java.util.Arrays; |
06 | import org.apache.commons.validator.routines.EmailValidator; |
08 | public class EmailValidation { |
09 | public static void main(String[] args) { |
10 | List<String> emails = Arrays.asList( |
11 | "abcd@gmail.com" , "abcd.def.com" , "xyz@example.com" ); |
13 | for (String email : emails) { |
14 | boolean valid = EmailValidator.getInstance().isValid(email); |
15 | System.out.println(email + " is " + (valid ? "valid" : "not valid" )); |
It gives the following output,
abcd@gmail.com is valid
abcd.def.com is not valid
xyz@example.com is valid
|
|