View Single Post
  #2 (permalink)  
Old 06-19-2009, 04:57 PM
RamyaSivakanth's Avatar
RamyaSivakanth RamyaSivakanth is offline
Senior Member
 
Join Date: Apr 2009
Location: Chennai
Posts: 588
Rep Power: 1
RamyaSivakanth is on a distinguished road
Default
Hi Raghuvasa,
You can use javax.mail.internet api for checking the validity of EmailAddress like this below.

Gothru below link
InternetAddress (Java 2 Platform Ent. Ed. v1.4)

Code:
InternetAddress address = new InternetAddress("specify the address");

address.validate();
__________________
Ramya
Reply With Quote