validation of date,phone number,email

validation of date,phone number,email

Sir how to validate date,phone number and email in java swings
View Answers

April 7, 2010 at 1:21 PM

Hi Friend,

Try the following code:

import java.awt.*;
import javax.swing.*;
import java.awt.event.*;
import java.util.*;
import java.text.*;
import java.util.regex.*;
class Validations extends JFrame{
JLabel l1,l2,l3,l;
JLabel lab1,lab2,lab3;
JTextField t1,t2,t3;
JPanel p;

Validations(){
l1=new JLabel("Enter Date: (MM/dd/yyyy)");
t1=new JTextField(20);
l2=new JLabel("Enter Phone Number: ");
t2=new JTextField(20);
l3=new JLabel("Enter Email: ");
t3=new JTextField(20);

lab1=new JLabel();
lab2=new JLabel();
lab3=new JLabel();
p=new JPanel(new GridLayout(3,3));
p.add(l1);
p.add(t1);
p.add(lab1);
p.add(l2);
p.add(t2);
p.add(lab2);
p.add(l3);
p.add(t3);
p.add(lab3);
add(p);
setVisible(true);
pack();
lab1.setVisible(false);
lab2.setVisible(false);
lab3.setVisible(false);
t1.addKeyListener(new KeyAdapter() {
public void keyTyped(KeyEvent e) {
String date=t1.getText();
try{
DateFormat df = DateFormat.getDateInstance(DateFormat.SHORT);
df.setLenient(false);
Date dt2 = df.parse(date);
lab1.setVisible(false);
}
catch(Exception ex){
lab1.setText("* Invalid Date");
lab1.setVisible(true);
lab1.setForeground(Color.red);
}
}
});

t2.addKeyListener(new KeyAdapter() {
public void keyTyped(KeyEvent e) {
String input = t2.getText();
Pattern p = Pattern.compile("[A-Z,a-z,&%$@!()*^]");
Matcher m = p.matcher(input);
if (m.find()) {
lab2.setText("* Enter only Numeric Value");
lab2.setVisible(true);
lab2.setForeground(Color.red);
}
else{
lab2.setVisible(false);
}
}
});

t3.addKeyListener(new KeyAdapter() {
public void keyTyped(KeyEvent e) {
String email=t3.getText();
String exp="^[\\w\\-]([\\.\\w])+[\\w]+@([\\w\\-]+\\.)+[A-Z]{2,4}$";
CharSequence seq = email;
Pattern pattern = Pattern.compile(exp,Pattern.CASE_INSENSITIVE);
Matcher m = pattern.matcher(seq);
if (m.matches()) {
lab3.setVisible(false);
}
else {
lab3.setText("* Invalid Email ID");
lab3.setVisible(true);
lab3.setForeground(Color.red);
}
}
});
}
public static void main(String[]args){
Validations v=new Validations();
}
}

Thanks









Related Tutorials/Questions & Answers:
validation of date,phone number,email - Java Beginners
validation of date,phone number,email  Sir how to validate date,phone number and email in java swings  Hi Friend, Try the following code...)"); t1=new JTextField(20); l2=new JLabel("Enter Phone Number
validation
validation  validation
Advertisements
validation
validation  we are doing payroll system project in java.So pls provide the complete validation code for employee master form
validation.....
validation.....  hi.......... thanks for ur reply for validation code. but i want a very simple code in java swings where user is allowed to enter only numerical values in textbox , if he enters string values then it should
validation
Validation method valid the in put. otherwise call the javascript onsubmit to check... code.Ok if you use struts then you can use Validation method valid the in put
Validation
[]columns={"Name","Number","Price"}; Object[][]data={ {"A",new Integer(01),new...); JLabel label=new JLabel("JTable validation Example",JLabel.CENTER); JPanel panel=new JPanel(); panel.add(scroll); JFrame frame=new JFrame("JTable validation
validation
validation  please help me to check validation for <form>...;/tr> <tr> <td> <label>Date :</label> </td>...; <label> Date Picker</label>
validation files
validation files  If I place validation files in the folder where the action classes are present,will there any error arise
javascript validation
javascript validation  validation of comparing dropdownlist and textbox in javascript
form validation
form validation  how the form validation is done in jsf form using javaScript
validation query
validation query  where I should kept properties file inside struts Web application
Validation - Struts
Validation  what is the best way to use validation in Struts?either "validation.xml" or JavaScript
NSURL Validation
NSURL Validation  How to validate a NSURL string using special character validation
email validation
email validation  during email validation.... after domain name which it means if example [email protected] .... this address allowed by any validation program .... but i want to show invalid email address because domain name com
email validation
email validation  during email validation.... after domain name which it means if example [email protected] .... this address allowed by any validation program .... but i want to show invalid email address because domain name com
Validation of datepicker
a future date is entered..How to do this validation in javascript or jsp...Validation of datepicker  I have a datepicker in my JSp...the seleted dates are put in a text box. I want the alert the user from selecting future
comboBox validation
comboBox validation  dear sir. i want to know . how to validate radio button in struts using xml validation. thanks
Form Validation
Form Validation  Java script validation for checking special characters and white spaces and give an alert.Please help me urgent Thanks in advance
Date Validation
Date Validation  Hi, I need Date Validation using java in spring framework. Please Anyone help me... Thanks in advance
date validation
date validation  sir, pls provide date validation code in javascript..we want to include it into our master form..   Please visit the following link: http://www.roseindia.net/mysql/datevalidation.shtml
validation - Framework
validation  how to validate the action forms in struts? could you please explain how cross validation is done for date?  You go the following url: http://www.roseindia.net/struts/struts-login-form.shtml
Struts validation
Struts validation  I want to put validation rules on my project.But after following all the rules I can't find the result. I have extended... validation rules,put the plugins inside strutsconfig.xml, put the html:errors tag
Validation - Struts
; Hi friend, Phone validation using javaScript function...==""){ alert ("This field is required. Please enter phone number without dashes...("Invalid phone number length! Please try again.") return false
Validation doubt
Validation doubt  hi..... thanks for the other validation code. I have got that and implemented in my code but i have a doubt in that. As we try to put string values its not allowing to do tht it gives us message its right
Server side validation vs client side validation
Server side validation vs client side validation  Can any one tell me the difference between these two different ways of Validation? Also features of Server side validation vs client side validation.   The client side
Struts2 validation Procedure
Struts2 validation Procedure  In struts2 Which one is best XML Validation or Programatic validation? and which one is used in real world application
Struts2 validation Procedure
Struts2 validation Procedure  In struts2 Which one is best XML Validation or Programatic validation? and which one is used in real world application
Struts2 validation Procedure
Struts2 validation Procedure  In struts2 Which one is best XML Validation or Programatic validation? and which one is used in real world application
validation
Validation
me to save the email id and contact number (mobile number) in a database (MySQL...(){ label1 = new JLabel(); label1.setText("Email Id:"); text1 = new JTextField(20...(); ResultSet rs=st.executeQuery("select * from data where email='"+value1
Validation
validation
Validation
Validation
; <b>Date of birth</b> :<input type="date" name="dob">
Validation
; <b>Date of birth</b> :<input type="date" name="dob">
validation
JavaScript Form Validation
JavaScript Form Validation  JavaScript Form Validation
javascript validation
validation and for email field it will check formate useing regularexpressions...;html    Email Validation function checkEmail...; <td>email:</td> <td><input type="text
Struts 2 - Validation - Struts
Struts 2 - Validation annotations  digging for a simple struts 2 validation annotations example
string validation in php - PHP
string validation in php  Can you please post a example of PHP Built-in String Validation Functions
validation error value is not valid
validation error value is not valid  How to recognize and throw error like "validation error value is not valid
Struts2 validation Procedure
Struts2 validation Procedure  In struts2 Which one is best XML Validation or Programatic validation? and which one is used in real world application?   Hi, Mostly it is programmatic validation is used. In care
form validation
; <td>email:</td> <td><input type="text" name="email" id="text1"></td> <...; <td>phone no:</td> <td><input type
String Validation
String Validation changing password  Hi. I have a HTML coding in that I have to check whether the value given in the 2 password fields are same or not. Its for the form changing password. If they are not same it should give
alert for validation
data should be in DD/MM/YYYY format only through javascript validation.  ...) if (cpos1==-1 || cpos2==-1){ alert("The date format must be : dd/mm/yyyy...){ alert("Enter a valid date") return false } return
ModuleNotFoundError: No module named 'validation'
ModuleNotFoundError: No module named 'validation'  Hi, My Python... 'validation' How to remove the ModuleNotFoundError: No module named 'validation' error? Thanks   Hi, In your python environment you
struts validation
struts validation  I want to apply validation on my program.But i am failure to do that.I have followed all the rules for validation still I am unable to solve the problem. please kindly help me.. I describe my program below
struts validation
struts validation  I want to apply validation on my program.But i am failure to do that.I have followed all the rules for validation still I am unable to solve the problem. please kindly help me.. I describe my program below
what is custom validation in struts
what is custom validation in struts  what is custom validatons in struts
Core validation in Xml
Core validation in Xml  Hi..... please tell me about Explain about core validation in Xml?ADS_TO_REPLACE_1 Thanks

Ads