Example of Date class

We can use Date class to use current date. In this program we are creating a Date object and
by using it we are going to display the current date and time. It implements Serializable,
Cloneable, Comparable
interfaces. Its known subclasses are Date, Time, Timestamp.
Code of a program is given below:
import java.util.*;
public class DateDemo{
public static void main(String[] args) {
Date d=new Date();
System.out.println("Today date is "+ d);
}
}
|
Output of this program is given below:
Today date is Tue Dec 19 22:14:46 GMT+05:30 2006
Download this example

|