tl  tr
  Home | Tutorials | Articles | Videos | Products | Tools | Search
Interviews | Open Source | Tag Cloud | Follow Us | Bookmark | Contact   
 Articles > Validations > How to validate Email in Java

How to validate Email in Java

Author: Venkata Sudhakar

The below example shows how to validate Email in Java

01package com.bethecoder.validations;
02 
03import java.util.Arrays;
04import java.util.List;
05 
06import org.apache.commons.validator.routines.EmailValidator;
07 
08public 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");  
12         
13        for (String email : emails) {
14            boolean valid = EmailValidator.getInstance().isValid(email);   
15            System.out.println(email + " is " + (valid ? "valid" : "not valid"));
16        }
17    }
18}

It gives the following output,

abcd@gmail.com is valid
abcd.def.com is not valid
xyz@example.com is valid

 
  


  
bl  br