Home Answers Viewqa Java-Beginners updated with current date n time

 
 


nasirul hassan khan
updated with current date n time
2 Answer(s)      a year and a month ago
Posted in : Java Beginners

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 Pages:
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...); frm.add(txf4); //sr no label n textfield lbl13=new JLabel
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..., 32, 20); frm.add(txf4); //sr no label n textfield
J2ME Current Date And Time
J2ME Current Date And Time     ... the current date and time on the screen. Like core Java J2ME too use the same  java.util package to show the current date as well as current time on the screen
javascript current date and time.
javascript current date and time.  How can we display current date... with current day,date,time and GMT.You can have your own format...;Current date and time</title> </head> <script type="text/javascript
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...(txf4); //sr no label n textfield lbl13=new JLabel(" Sr
C Current Time
to the current date and time. The printf() function then prints the current date... C Current Time       In this section, you will learn how to get the current time in C. 
date_time_set
date_time_set date_time_set alias DateTime::setTime function resets the the current time of the DateTime object to a different time. It returns the modified date and time.  Syntax public DateTime DateTime::setTime ( int
Iphone Show Current Date & Time
Iphone Show Current Date & Time In the previous examples, we have printed current date and time separately in iphone simulator. But in this example we are going to show you how to print both current date and current time in iphone
How to display the current time
How to display the current time  I was develop online web portal. In this web portal i am going to display time. I am using <%= new java.util.Date() %> to display the time. But it display the time after that cannot changed
Mysql Date and Time
Mysql Date and Time       Mysql Date and Time is used to return the current date and time. Understand... date and time. CURRENT_TIMESTAMP:-This is used to returns the current date
JDBC: Get current Date and Time Example
JDBC: Get current Date and Time Example In this section, you will learn how to get current Date and current time using JDBC API. Get current Date and Time... date and current time by using MySql methods CURDATE() and CURTIME
PHP Date and Time
 The PHP Date and Time functions are very useful in manipulating the Date in your PHP program. The PHP Date and Time generates the current date and time in runtime dynamically. Following example prints the current date: You can
How can we get second of the current time using date function?
How can we get second of the current time using date function?  How can we get second of the current time using date function
Mysql Date no Time
Mysql Date no Time       Mysql Date no Time is used to find out the current date with no time... . In this Example, the date(now( ) ) return you the current date  with no time
Getting the Current Time
Getting the Current Time       This section shows the way of getting  the current time... the current time by using the various methods of the Calendar class. These are explained
JDBC : Current Date
_TIMESTAMP, CURRENT_TIMESTAMP(), NOW() functions return the current date and time... the current date and time as a value in 'YYYY-MM-DD HH:MM:SS' . Example...JDBC : Current Date In this section, you will learn query for current date
Java current date - How to get current date in Java
In this section, you will learn about displaying current date and time in Java
Write an Applet which display current date and time on the web page??
Write an Applet which display current date and time on the web page??  Write an Applet which display current date and time on the web page??  Here is an applet code that display date and time. import java.applet.
Write an Applet which display current date and time on the web page??
Write an Applet which display current date and time on the web page??  Write an Applet which display current date and time on the web page?  Here is an applet code that display date and time. import java.applet.
Iphone Current Time Example
Iphone Current Time Example After going through this iphone SDK example, you will be able to show the current time on UILable. In this example we have used a UILable to show the output(current time) of the application and an UIButton
time ()
PHP time() Function The time() returns the current time  measured...). This function is similar to mktime() with no parameters or calling date ("U"). Syntax of time() Function in PHP time(void) Parameter of time() Function
Mysql Date from Date
'. To grasp this example, we use date(current_trimestamp ( )) query that return you the current date  from date time as Date field name. Query...; Mysql  Date from Date Time in Mysql return the Current  date
Mysql Date Arithmetic
( ) query that return you the current date and time. SYNTAX:-date + INTERVAL expression unit Query:- For current date and time mysql> Select now... and time before the current time  For subtracting 2 days from current date
Date and Time - Swing AWT
Date and Time  the following program is developed in swings ..... the main objective of this program is to 1> get a date from user 2> retrieve the current date from the system 3> hence find out the difference
Get Date and Time
been initialized with the current date and time. getTime() method returns current... Get Date and Time       In the example given below we will see, how to display current date
Mysql Current TimeStamp
the current date and time of your database. select CURRENT_TIMESTAMP...; Mysql Current Timse Stamp is used to show the current time and current... an example from 'Mysql Current TimeStamp'. To understand, we use current_date query
Mysql Now Current DateTime
Current Date Time'. To understand and grasp an example we run a query now ( ) that return the current date  and time of your database. Query:-  ... Mysql Now Current DateTime     
Mysql Now Current DateTime
Now Current Date Time'. To understand and grasp an example we run a query now ( ) that return the current date  and time of your database.    ... Mysql Now Current DateTime     
Java program to get current date now
of code gets the current date and time in the yyyy/MMM/dd HH:mm:ss format... Java program to get current date now   ... date at present now. We have used Calendar class for getting the current date
display current time when using datetimepiker in struts2
display current time when using datetimepiker in struts2  how to display current time when using datetimepiker in struts2 I set displayFormat="dd/MM...() throws Exception { ngay_laphd =new Date("Jan 12, 1984 11:21:30 AM"); return
Insert current date into MYSQL database
Insert current date into MYSQL database In this tutorial, you will learn how to insert current date into database. In most of the applications, there is a need to insert date or time to database. Mysql provides several datatypes
Display current time using jQuery & JSP
Display current time using jQuery & JSP In this Tutorial we will develop a Html page which displays current date and time using jQuery and JSP.This Html page contains jQuery which calls JSP page to add date in the web page
How to convert date to time in PHP?
How to convert date to time in PHP?  Hi, programmer. The PHP... and time. The PHP "time()" function is used to get the current Unix timestamp..., but as a readable date and time, it leaves much to be desired. Luckily, the PHP "date
jQuery to Retrieve Server's Current Time
jQuery to Retrieve Server's Current Time   ... program that retrieves the current time from server and displays on the user browser... to develop the Current Server Time program Step 1:       Create php file
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
PHP Date and Time Functions
January 1 1970 00:00:00 GMT: <?php print time(); ?> Printing current date... The PHP Date and Time Functions functions allows the developer to read the current system time in easy and convenient way. It also helps the developers
Mysql Date Now
; Date Now in Mysql is used to find out the current date and time. Understand...'. In this example we help you to find out the current date and time in Mysql. The Syntax below returns you the current date and time: now ( ) :The now ( ) return you
Mysql Date Commands
; Mysql Date Commands illustrate the list of commands for retrieving current date, current time, local time etc. Understand with Example The Tutorial... returns  you the the current date and time in the session time zone
Mysql Date Default
Mysql Date Default       Date Default in Mysql is used to return the current date and time. Understand with Example The Tutorial illustrate an example from Date Default in Mysql
Current date in php
Current date in php  How to show the current date in the HTML page using PHP Script
Date & Time
Date & Time  How to insert System Date & Time in MS-ACCESS using Java
Date & Time
Date & Time  How to insert System Date & Time in MS-ACCESS using Java
PHP Date and Time Date and time Tutorial
will take current date and time value. Here are special meanings of some...;  print(date("Current time is: H (hours), i (minutes), s (seconds... right arguments can be omitted and they will be set to current date time values
To Upload and insert the file into Database with Current Date and Time In JSP
in database with current date and time.   <%@ page import="java.io.... into database with current date and time using JDBC database.  This can be done... file upload and insert into database with current date and time. Table Structure
Iphone Current Date Application
Iphone Current Date Application  Hi, I am a beginner in the mobile web application segment. How can i develop Iphone Current Date Application. I need the online help guide or example about iphone current date format. Thanks
current date in php
current date in php  PHP script to get current date.   Hi, You can use the following code to print the current in PHP: <?php echo date('y m d'); ?> With the help of following code you can get the current date
Mysql Date and Time
the current date in yyyy-mm-dd and time in hh:mm:ss. Query for displaying current date... Mysql Date and Time      .... In this Tutorial ,we illustrate an example that help you in writing a date time
Session Last Accessed Time Example
;Time:</H4>\n" +   "<TABLE BORDER=1 ..." +   "<TD>Session Creation Time\n"...;Session Access Time\n" +   "  <

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.