Java Date Tim 16
Java Date Tim 16
http://www.tutorialspoint.com/java/java_date_time.htm
Copyright tutorialspoint.com
Java provides the Date class available in java.util package, this class encapsulates the current
date and time.
The Date class supports two constructors as shown below.
SR.NO
Date
This constructor initializes the object with the current date and time.
Datelongmillisec
This constructor accepts an argument that equals the number of milliseconds that
have elapsed since midnight, January 1, 1970
boolean afterDatedate
Returns true if the invoking Date object contains a date that is later than the one specified
by date, otherwise, it returns false.
boolean beforeDatedate
Returns true if the invoking Date object contains a date that is earlier than the one
specified by date, otherwise, it returns false.
Object clone
Duplicates the invoking Date object.
int compareToDatedate
Compares the value of the invoking object with that of date. Returns 0 if the values are
equal. Returns a negative value if the invoking object is earlier than date. Returns a
positive value if the invoking object is later than date.
int compareToObjectobj
Operates identically to compareToDate if obj is of class Date. Otherwise, it throws a
ClassCastException.
boolean equalsObjectdate
Returns true if the invoking Date object contains the same time and date as the one
specified by date, otherwise, it returns false.
long getTime
Returns the number of milliseconds that have elapsed since January 1, 1970.
8
int hashCode
Returns a hash code for the invoking object.
void setTimelongtime
Sets the time and date as specified by time, which represents an elapsed time in
milliseconds from midnight, January 1, 1970
10
String toString
Converts the invoking Date object into a string and returns the result.
Date Comparison:
There are following three ways to compare two dates:
You can use getTime to obtain the number of milliseconds that have elapsed since midnight,
January 1, 1970, for both objects and then compare these two values.
You can use the methods before, after, and equals. Because the 12th of the month comes
before the 18th, for example, new Date99, 2, 12.beforenewDate(99, 2, 18) returns true.
You can use the compareTo method, which is defined by the Comparable interface and
implemented by Date.
Description
Example
Era designator
AD
2001
Month in year
July or 07
Day in month
10
Hour in A.M./P.M. 1 12
12
Hour in day 0 23
22
Minute in hour
30
Second in minute
55
Millisecond
234
Day in week
Tuesday
Day in year
360
2 secondWed. inJuly
Week in year
40
Week in month
A.M./P.M. marker
PM
Hour in day 1 24
24
Hour in A.M./P.M. 0 11
10
Time zone
'
Delimiter
"
Single quote
It would be a bit silly if you had to supply the date multiple times to format each part. For that
reason, a format string can indicate the index of the argument to be formatted.
The index must immediately follow the % and it must be terminated by a $. For example:
import java.util.Date;
public class DateDemo {
public static void main(String args[]) {
// Instantiate a Date object
Date date = new Date();
// display time and date using toString()
System.out.printf("%1$s %2$tB %2$td, %2$tY",
"Due date:", date);
}
}
Alternatively, you can use the < flag. It indicates that the same argument as in the preceding
format specification should be used again. For example:
import java.util.Date;
public class DateDemo {
public static void main(String args[]) {
// Instantiate a Date object
Date date = new Date();
// display formatted date
System.out.printf("%s %tB %<te, %<tY",
"Due date:", date);
}
}
Character
Description
Example
2004-02-09
02/09/2004
24-hour time
18:05:19
12-hour time
06:05:19 pm
18:05
2004
04
20
February
Feb
02
03
Monday
Mon
069
18
18
06
05
19
047
047000000
PM
pm
-0800
Time zone
PST
1078884319
1078884319047
There are other useful classes related to Date and time. For more details, you can refer to Java
Standard documentation.
A sample run of the above program would produce the following result:
$ java DateDemo
1818-11-11 Parses as Wed Nov 11 00:00:00 GMT 1818
$ java DateDemo 2007-12-01
2007-12-01 Parses as Sat Dec 01 00:00:00 GMT 2007
GregorianCalendar Class:
GregorianCalendar is a concrete implementation of a Calendar class that implements the normal
Gregorian calendar with which you are familiar. I did not discuss Calendar class in this tutorial, you
can look standard Java documentation for this.
The getInstance method of Calendar returns a GregorianCalendar initialized with the current
date and time in the default locale and time zone. GregorianCalendar defines two fields: AD and
BC. These represent the two eras defined by the Gregorian calendar.
There are also several constructors for GregorianCalendar objects:
SN
GregorianCalendar
Constructs a default GregorianCalendar using the current time in the default time zone
with the default locale.
GregorianCalendarLocaleaLocale
Constructs a GregorianCalendar based on the current time in the default time zone with
the given locale.
GregorianCalendarTimeZonezone
Constructs a GregorianCalendar based on the current time in the given time zone with the
default locale.
GregorianCalendarTimeZonezone, LocaleaLocale
Constructs a GregorianCalendar based on the current time in the given time zone with the
given locale.
Here is the list of few useful support methods provided by GregorianCalendar class:
SN
boolean equalsObjectobj
Compares this GregorianCalendar to an object reference.
int getintfield
Gets the value for a given time field.
int getActualMaximumintfield
Return the maximum value that this field could have, given the current date.
int getActualMinimumintfield
Return the minimum value that this field could have, given the current date.
int getGreatestMinimumintfield
Returns highest minimum value for the given field if varies.
Date getGregorianChange
Gets the Gregorian Calendar change date.
10
int getLeastMaximumintfield
Returns lowest maximum value for the given field if varies.
11
int getMaximumintfield
Returns maximum value for the given field.
12
Date getTime
Gets this Calendar's current time.
13
long getTimeInMillis
Gets this Calendar's current time as a long.
14
TimeZone getTimeZone
Gets the time zone.
15
int getMinimumintfield
Returns minimum value for the given field.
16
int hashCode
Override hashCode.
17
boolean isLeapYearintyear
Determines if the given year is a leap year.
18
19
20
21
22
23
void setGregorianChangeDatedate
Sets the GregorianCalendar change date.
24
void setTimeDatedate
Sets this Calendar's current time with the given Date.
25
void setTimeInMillislongmillis
Sets this Calendar's current time from the given long value.
26
void setTimeZoneTimeZonevalue
Sets the time zone with the given time zone value.
27
String toString
Return a string representation of this calendar.
Example:
import java.util.*;
public class GregorianCalendarDemo {
public static void main(String args[]) {
String months[] = {
"Jan", "Feb", "Mar", "Apr",
"May", "Jun", "Jul", "Aug",
"Sep", "Oct", "Nov", "Dec"};
int year;
// Create a Gregorian calendar initialized
// with the current date and time in the
// default locale and timezone.
GregorianCalendar gcalendar = new GregorianCalendar();
// Display current time and date information.
System.out.print("Date: ");
System.out.print(months[gcalendar.get(Calendar.MONTH)]);
System.out.print(" " + gcalendar.get(Calendar.DATE) + " ");
System.out.println(year = gcalendar.get(Calendar.YEAR));
System.out.print("Time: ");
System.out.print(gcalendar.get(Calendar.HOUR) + ":");
System.out.print(gcalendar.get(Calendar.MINUTE) + ":");
System.out.println(gcalendar.get(Calendar.SECOND));
// Test if the current year is a leap year
if(gcalendar.isLeapYear(year)) {
System.out.println("The current year is a leap year");
}
else {
System.out.println("The current year is not a leap year");
}
}
}
For a complete list of constant available in Calendar class, you can refer to standard Java
documentation.
documentation.