date format updated

date format updated

package LvFrm;
import java.awt.Color;
import java.awt.Font;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.ItemEvent;
import java.awt.event.ItemListener;
import javax.swing.*;
import javax.swing.border.Border;
import javax.swing.JButton;


@SuppressWarnings("serial")
public class Check extends JFrame implements ActionListener,ItemListener
{  

    //class declaration

    JFrame frm;
    JLabel lbl1,lbl2,lbl3,lbl4,lbl5,lbl6,lbl7,lbl8,lbl9,lbl10,
    lbl11,lbl12,lbl13,lbl14,lbl15,lbl16,lbl17,lbl18,lbl19,lbl20;
    JTextField txf1,txf2,txf3,txf4,txf5,txf6,txf7,txf8,txf9,txf10;
    JPanel panel1,panel2,panel3,panel4;
    Font f1;
    JComboBox i1,j1,k1;
    JButton b1,b2;

    //for date month year entry

    String strD[]={"Day","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31"};
    String strM[]={"Month","Jan","Feb","Mar","App","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"};
    String strY[]={"Year","2012"};
        Check()
    {
        //for font setting

        f1=new Font("",Font.BOLD,25);
        this.setLayout(null);

        //frame declaration

        JFrame frm=new JFrame("first project");
        frm.setSize(650,400);
        frm.setLayout(null);

        /*Icon i=new ImageIcon("file:\\C:\\Documents%20and%20Settings\\All%20Users\\Documents\\My%20Pictures\\Sample%20Pictures\\Sunset.jpg");
        //.setIcon(new ImageIcon("C://Documents and Settings//smart vision//Desktop"));

        JLabel image=new JLabel(i);
        image.setBounds(100,100,125,120);
        frm.add(image);
        */

        lbl1=new JLabel("JOB WORK CENTRAL");
        lbl1.setBounds(235,10,135,35);
        frm.add(lbl1);
        lbl2=new JLabel("Home Shop ");
        lbl2.setFont(f1);
        lbl2.setBounds(220,30,330,40);
        frm.add(lbl2);
        lbl3=new JLabel("Mfrs. of :Baby Tricycles,Jhula,Walker,Rides,Accessories,"); 

        lbl3.setBounds(130, 20, 450, 100);
        frm.add(lbl3);

        lbl4=new JLabel (" Corrugated Box,Rolls,Sheets & Packing Materials");
        lbl4.setBounds(150, 30, 450, 105);
        frm.add(lbl4);

        lbl5=new JLabel("B39/4,SITE-IV,SAHIBABAD INDUSTRIAL AREA,,GAZIABAD(U.P)201010");
        lbl5.setBounds(100, 40, 480, 145);
        frm.add(lbl5);

        lbl6=new JLabel("Job Work :All Kinds Of Powder Coating Items");
        lbl6.setBounds(160, 30, 465, 135);
        frm.add(lbl6);

        lbl7=new JLabel("TIN NO:09888807951");
        lbl7.setBounds(10,10,125,30);
        frm.add(lbl7);

        lbl8=new JLabel("Dated 3-7-2008");
        lbl8.setBounds(10,20,135,40);
        frm.add(lbl8);

        lbl9=new JLabel("Customer Mob No-");
        lbl9.setBounds(10,80,135,90);
        frm.add(lbl9);

        //m/s label & textfld

        lbl10=new JLabel("M/s.");
        lbl10.setBounds(35,105,135,110);
        frm.add(lbl10);

        txf1=new JTextField();
        txf1.setBounds(70, 150, 130, 25);
        frm.add(txf1);

        //address label & textfld

        lbl11=new JLabel("Address");
        lbl11.setBounds(10,150,135,110);
        frm.add(lbl11);


        txf2=new JTextField();
        txf2.setBounds(70, 190, 130, 30);
        frm.add(txf2);

        //book no label & textfld

        lbl12=new JLabel("Book NO");
        lbl12.setBounds(250,105,80,110);
        frm.add(lbl12);

        txf4=new JTextField();
        txf4.setBounds(300, 150, 32, 20);
        frm.add(txf4);
        //sr no label n textfield

        lbl13=new JLabel(" Sr No");
        lbl13.setBounds(330,105,40,110);
        frm.add(lbl13);

        txf5=new JTextField();
        txf5.setBounds(364, 150, 40, 20);
        frm.add(txf5);

        //transport label & textfld

        lbl16=new JLabel(" Transport");
        lbl16.setBounds(245,150,70,145);
        frm.add(lbl16);

        txf6=new JTextField();
        txf6.setBounds(315, 212, 80, 25);
        frm.add(txf6);

        //g.r no label & textfld

        lbl17=new JLabel(" G.R No.");
        lbl17.setBounds(430,150,70,145);
        frm.add(lbl17);

        txf7=new JTextField();
        txf7.setBounds(480, 212,100, 25);
        frm.add(txf7);

        //creating button & adding to Frame

        b1=new JButton("Add");
        b1.setBounds(220,270,70,20);
        frm.add(b1);
        b1.addActionListener(this);


        b2=new JButton("Print");
        b2.setBounds(300,270,80,20);
        frm.add(b2);

        //panel1 declaration

        panel1=new JPanel();
        panel1.setLayout(null);
        panel1.setBounds(5, 10, 600,130);
        Border b1= BorderFactory.createLineBorder(Color.darkGray);
        panel1.setBorder(b1);
        frm.add(panel1);

        //panel2 declaration

        panel2=new JPanel();
        panel2.setLayout(null);
        panel2.setBounds(5, 140, 600,100);
        Border b2= BorderFactory.createLineBorder(Color.darkGray);
        panel2.setBorder(b2);
        frm.add(panel2);

     /*for date entry & adding date into panel 2
       also addind panel into frame
        */

        lbl14=new JLabel("Date");
        lbl14.setBounds(400,10,30,20);
        frm.add(lbl14);
        panel2.add(lbl14);

        i1=new JComboBox(strD);
        i1.setBounds(430, 10, 50, 20);
        i1.addItemListener(this);
        frm.add(i1);
        panel2.add( i1);
        j1=new JComboBox(strM);
        j1.setBounds(480, 10, 60, 20);
        j1.addItemListener(this);
        frm.add(j1);
        panel2.add(j1);
        k1=new JComboBox(strY);
        k1.setBounds(540, 10, 60, 20);
        k1.addItemListener(this);
        frm.add(k1);
        panel2.add(k1);

        /*time of removal goods label & text field &
         * adding it to panel2
         */

        lbl15=new JLabel("Time Of Removal Of Goods");
        lbl15.setBounds(245,30,170,30);
        frm.add(lbl15);
        panel2.add(lbl15);

        txf3=new JTextField();
        txf3.setBounds(425, 35, 170, 25);
        frm.add(txf3);
        panel2.add(txf3);

    frm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frm.setVisible(true);

    }


    //main 
    public static void main(String args[])
    {
        new Check();
        new bean();
        new Conn();

    }

    @Override
    public void itemStateChanged(ItemEvent arg0) {
        // TODO Auto-generated method stub

    }

    @Override
    public void actionPerformed(ActionEvent arg0) {
        // TODO Auto-generated method stub

    }

    }   
View Answers

April 3, 2012 at 4:41 PM

import java.sql.*;
import java.awt.*;
import java.util.*;
import java.text.*;
import javax.swing.*;
import java.awt.event.*;

public class GetDate{
    static String months[]={"Month","Jan","Feb","Mar","App","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"};
    static int getMonth(String month){
    for(int i = 0; i<12; i++) {
      if(month == months[i])
          return i;
    }
    return 0;
    }
public static void main(String args[]){
GetDate get=new GetDate();
}
public GetDate(){
JFrame f = new JFrame();
f.getContentPane().setLayout(null);
final JComboBox day=new JComboBox();
final JComboBox month=new JComboBox();
final JComboBox year=new JComboBox();
JButton button= new JButton("Submit");
day.addItem("Day");
year.addItem("Year");
for(int i=1;i<=31;i++){
day.addItem(i);
}
day.setBounds(10,10,10,10);
for(int j=0;j<months.length;j++){
month.addItem(months[j]);
}
for(int k=1980;k<=2012;k++){
year.addItem(k);
}
day.setBounds(50,50,60,20);
month.setBounds(120,50,80,20);
year.setBounds(210,50,60,20);
button.setBounds(50,80,100,20);
button.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e){
Object ob1=day.getSelectedItem();
Object ob2=month.getSelectedItem();
Object ob3=year.getSelectedItem();
int d=Integer.parseInt(ob1.toString());
String mon=ob2.toString();
int m=getMonth(mon);
int y=Integer.parseInt(ob3.toString());
Calendar cal = GregorianCalendar.getInstance();
cal.set(y, m-1, d);  
SimpleDateFormat sdf=new SimpleDateFormat("yyyy-MM-dd");
System.out.println(sdf.format(cal.getTime()));
}
});
f.add(day);
f.add(month);
f.add(year);
f.add(button);
f.setVisible(true);
f.setSize(300,200);
}
}

April 3, 2012 at 4:42 PM

import java.sql.*;
import java.awt.*;
import javax.swing.*;
import java.awt.event.*;

public class GetDOB{
public static void main(String args[]){
GetDOB get=new GetDOB();
}
public GetDOB(){
JFrame f = new JFrame();
f.getContentPane().setLayout(null);
final JComboBox day=new JComboBox();
final JComboBox month=new JComboBox();
final JComboBox year=new JComboBox();
JButton button= new JButton("Submit");
for(int i=1;i<=31;i++){
day.addItem(i);
}
day.setBounds(10,10,10,10);
for(int j=1;j<=12;j++){
month.addItem(j);
}
for(int k=1900;k<=2010;k++){
year.addItem(k);
}
day.setBounds(50,50,40,20);
month.setBounds(100,50,40,20);
year.setBounds(150,50,60,20);
button.setBounds(50,80,100,20);
button.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e){
Object ob1=day.getSelectedItem();
Object ob2=month.getSelectedItem();
Object ob3=year.getSelectedItem();
int d=Integer.parseInt(ob1.toString());
int m=Integer.parseInt(ob2.toString());
int y=Integer.parseInt(ob3.toString());

try{
Class.forName("com.mysql.jdbc.Driver").newInstance();
Connection conn = DriverManager.getConnection("jdbc:mysql://localhost:3306/test","root";, "root");
PreparedStatement pstmt = conn.prepareStatement("insert into d(myDate) values(?)");
java.sql.Date sqlDate = new java.sql.Date(y-1900,m-1,d);
pstmt.setDate(1, sqlDate);
pstmt.executeUpdate();
JOptionPane.showMessageDialog(null,"Date in inserted successfully");
}
catch(Exception ex){}
}
});
f.add(day);
f.add(month);
f.add(year);
f.add(button);
f.setVisible(true);
f.setSize(300,200);
}
}









Related Tutorials/Questions & Answers:
date format updated
date format updated  package LvFrm; import java.awt.Color; import... panel1,panel2,panel3,panel4; Font f1; JComboBox i1,j1,k1; JButton b1,b2; //for date...); panel2.setBorder(b2); frm.add(panel2); /*for date entry & adding
date format to be updated with current date time
date format to be updated with current date time  package LvFrm...; JButton b1,b2; //for date month year entry String strD[]={"Day","1...); /*for date entry & adding date into panel 2 also addind panel
Advertisements
date format - Date Calendar
date format  how to convert dd-mmm-yyyy date format to gregorian calendar format in JSP please tell me the code  Hi friend, Code...="19-Sep-2008"; DateFormat format ; Date date ; format = new
Date format - Date Calendar
Date format  please convert dd-mmm-yy date format to gregorian calendar date format.  Hi friend, Code related your Problem: import...]); Calendar calendar = new GregorianCalendar(pdt); Date time = new Date
Date format - Date Calendar
Date format  Hi All, I am getting a date from database as a format 2010-15-07.I need to change it to 07/15/2010 and display it on my date field.Every time i need to check the format of the date field and make sure the correct
updated with current date n time
updated with current date n time  package LvFrm; import...; //for date month year entry String strD[]={"Day","1","2","3","4","5...); panel2.setBorder(b2); frm.add(panel2); /*for date entry
php date format change
php date format change  How to change the date format in PHP
convert current date into date format
convert current date into date format  How to get current date and convert into date format in Java or PHP
date_format()
date_format() date_format alias DateTime::format function returns date formatted according to given format. It returns formatted date on success otherwise False on failure. Description on date_format() PHP public string DateTime::format
php date format validation
php date format validation  How to validate the date field in specific format in PHP
String to date with no format
into a date .. this is simple .. but i want to do it without knowing the date format... date format can be (mm-dd-yyyy) if the 99th record also was 06-06-2006 the result should be date format can be (mm-dd-yyyy;dd-mm-yyyy) can sum1 please help me
select date in desired format
select date in desired format  how to select date from the database in DD/MM/YYYY format, because if i am trying select data from the database i am getting value in yyyy/mm/dd and time format like below "2012-05-07 00:00:00.0
java format date
java format date  Hi, How can I format the date in the following...) { Date date=new Date(); SimpleDateFormat sdf=new SimpleDateFormat("yyyy-MM-dd"); String formattedDate=sdf.format(date
Date auto format
Date auto format  Hi, I have jsp page and Date field with input type. Requirement is, if we enter date as MMDDYY or MMDDYYYY and clicking the tab the date(MMDDYY or MMDDYYYY) have to auto format to MM/DD/YYYY. could you please
String to Date format
String to Date format  My Date format is String Eg(Jan 20 2011 ).... How to Change This values Like to database date format Eg(2011-01-20) using..."; Date date=new Date(d); SimpleDateFormat sdf=new
php date format am pm
php date format am pm  how to set the date format that will display the date in both am pm format
NSDateformatter format Date
NSDateformatter format Date  Hi, What is the correct way of writing NSDateFormatter in string format. Thanks.   For current Date in NSDate... that represent other data types. For example to show the date in string format we'll
date format in javascript
date format in javascript  display date format as dd/mm/yyyy and day... help me. thank u var date=/^\d{2}\/\d{2}\/\d{4}$/ if(document.userform.joindate.value.search(date)==-1) { alert("please enter date format as dd/mm/yyyy
Hibernate Date Format
This section contains description of Hibernate Date Format
date format - Java Beginners
date format  how to 45day in dd-mmm-yyyy date format.  Hi...-yyyy", Locale.US); Date d = sdf.parse(timestamp); Calendar cal..."; System.out.println("Date is : " + timestampToParse); Calendar cal = parseTimestamp
Date not getting in proper format
Date not getting in proper format  import java.util.*; class Date { public static void main(String[]args) { Date d = new Date(100000000000L); System.out.print("1st date"+d.toString()); } } out put:- 1st date@3e25
Mysql Date Format
Mysql Date Format       Mysql Date Format explains you the way of formatting Date... Date Format'. To understand this example we show you the following Syntax used
date format - Java Beginners
date format  How to convert yyyy-mm-dd to dd-mmm-yyyy  Hi... void main(String args[]) throws Exception{ Date todaysDate = new java.util.Date...-dd date is ==>"+formattedDate); Date date1 = formatter.parse
date format - JSP-Servlet
date format  how to convert 2008-10-14 to 14-Sep-2008   Hi..."; SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd"); Date dateStr...); System.out.println("yyyy-MM-dd date is ==>"+formattedDate); Date
Date Format required to change in java
Date Format required to change in java  can we change the format of date like sql as per our requirements???If yes then please give the detail solution
Change Date Format - Development process
Change Date Format   Hi, i hav used following line get date field from database . But my output is 2009/26/5. How to change the format
date_parse_from_format
  date_parse_from_format date_parse_from_format function returns... date_parse_from_format ( string $format , string $date ) Parameters of Date Parse Function PHP format - Format accepted by date() with some extras. date
Change Date Format - Development process
Change Date Format  Hi, While retrieving data frm database, date format displayed as yyyy/mm/dd but i want to display as dd/mm/yyyy. I have tried parse,format functions but not getting output. can u send me code
Simple Date Format Example
Following is a simple date format example made using Format class. We have uses a pattern of special characters to date and time format. In this example, SimpleDateFormat:class is used to format date into text and parse text into date
Sql Date and Time Format
Sql Date and Time Format     ...; is used to  format date and time.  SYNTAX:- DATE_FORMAT(date,format)ADS..._Format(date,format) Query return you the format date in the order of Week,Day
Formatting a Date Using a Custom Format
Formatting a Date Using a Custom Format In this section, you will learn how to format a date using a custom format. Java has provide many classes that allow a programmer to format the date and time. Here we have used SimpleDateFormat
php date format yyyy-mm-dd
php date format yyyy-mm-dd  date format yyyy-mm-dd validation
Date Format Example
Date Format Example       This example shows how to format Date using Format class. In this program we use a pattern of special characters to date and time format
Java Date Format Example
Java Date Format Example You can format date in many ways. In this tutorial Format class is used to format the java date in to the different formats... in the following ways. 1. Create an object of Format class. 2. Set The required date
struts2.2.1 date Format example
struts2.2.1 date Format example. In this example, We will discuss about the different type of date format using struts2.2.1. Directory structure of example...; <title>Date Format Example</title> </head>ADS_TO_REPLACE_2
Mysql Date Format
Mysql Date Format      .... The Tutorial helps you to write the Date Format in SQL Query.  date_format...:- mysql> select date_format(now(),'%e %M %W %Y'); Output
ModuleNotFoundError: No module named 'date-format-machine'
ModuleNotFoundError: No module named 'date-format-machine'  Hi, My... named 'date-format-machine' How to remove the ModuleNotFoundError: No module named 'date-format-machine' error? Thanks   Hi
ModuleNotFoundError: No module named 'date-format-machine'
ModuleNotFoundError: No module named 'date-format-machine'  Hi, My... named 'date-format-machine' How to remove the ModuleNotFoundError: No module named 'date-format-machine' error? Thanks   Hi
Mysql Date Format codes
Mysql Date Format codes       The Tutorial illustrate an example from 'Mysql date format...; return you the date format in dd-mm-yy. mysql> select date_format
Regarding Date Format - Java Server Faces Questions
Regarding Date Format  How I can convert this(18-Aug-08) date format to Gregorian calendar date format?plz send me the syntax and code plz!!  hai,, http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&f
c# current date in yyyy-MM-dd format
date in the format like 2021-01-12? I have to get the date into Year-Month-Date format. In c# how to get current date in yyyy-mm-dd format...(dateString ); Above code will give date into 2021-01-21 format (yyyy-MM-dd). I
Mysql Date Format Convert
Mysql Date Format Convert     ... and time. Now, we help you to convert the Mysql Date Format Conversion into other... an example 'Mysql Date Format Convert'. To grasp this concept we use Date now
Parsing a Date Using a Custom Format
Parsing a Date Using a Custom Format In this section, you will learn how to parse a date using a custom format. Java has provide many classes for handling date and time. Among them, SimpleDateFormat is easier to use for formatting
Java Date format - Java Server Faces Questions
Java Date format  Code to calculate days between two dates in format... dates in format(DD/MM/YYYY) import java.util.Date; import... static void main(String[] args) { //string containing date in one
Date format - Java Server Faces Questions
Date format  Hi All, I have field like Invoice Date is displaying a date like MMddyyyy HH:mm:ss format.i want to set format to MM//dd//yy. To set the format for the field, I believe you have to use the jsf
How to convert date to UTC format in Java?
How to convert date to UTC format in Java?  Hi, What is UTC Date format and How to convert date to UTC format in Java? I need simple to learn... representation and the String UTC to the date format. Thanks   Hi, Here
Simple Date Format Exception
Simple Date Format Exception       Simple Date Format Exception inherits from a package name... and normalization of date. Simple Date-format provides you to work on choosing any
validationrule for date as format yyyy-mm-dd in drools
validationrule for date as format yyyy-mm-dd in drools  Please give idea about this one..I have two textfield. User can select the date from... format yyyy-mm-dd: How i write the validation rule for date as a format yyyy-mm-dd
Date and Time Format Example
Date and Time Format Example       This Example shows you date and time format... method is used for format Date into date/time String. DateFormatExample.java
Jdatechooser : not able to fetch date in a specific format
at this website now i can't fetch date from it ina a specific format... but i am...Jdatechooser : not able to fetch date in a specific format  get date from Jdatechooser in format ddmmyyyy i am trying to use a component by KAI

Ads