When working with dates in
Java, don't forget that a lot of questions can likely be answered by reading various class documentations. A few of the ones that are used frequently include Date, DateFormat, SimpleDateFormat, and Calendar:
JavaDoc:java.util.CalendarJavaDoc:java.util.DateJavaDoc:java.util.TimeZoneJavaDoc:java.text.DateFormatJavaDoc:java.text.SimpleDateFormat
Follow the links below for information on dealing with some common Date-related programming issues.
Understanding Date objects, formatting and parsingParsing a String into a DateFormatting datesDaylight Savings TimeComparing dates: See this topic for a discussion.How many days in a given month?Deprecated methods in java.util.Date
If you perform a lot of date-time operations, you might want to check out the
Joda Time library. And Java 8 contains an entirely new data and time API in the
java.time package, developed under
JSR 310.
Understanding Date objects, formatting and parsing
People sometimes ask questions about working with Date objects, specifically about how to convert a string that contains a date to a Date object, or how to display a date in a certain format. For example, they might ask: "How do I create a Date object in the format yyyy-MM-dd?", or "Why does Java print my Date in the format 'Fri Jun 28 09:16:39 CEST 2013', while I wanted '2013-06-28'?". Or they wonder how they can convert their Date object from one format to another. Questions like these come out of a lack of understanding what a Date object actually is and how to format and parse dates.
Here are a number of things to understand about Date objects.
1. The only thing that a Date object contains is a timestamp, represented as a number of milliseconds since 01-01-1970, 00:00:00 GMT. A Date object contains no other information. Specifically, Date objects do not have a format by themselves.
2. Converting a Date object to a String is called formatting, and converting a String to a Date object is called parsing.
3. To format a Date into a String, or parse a String into a Date, you use a DateFormat object. Class DateFormat is an abstract class; class SimpleDateFormat is the most well-known and easiest to use concrete subclass.
4. The DateFormat class is the only thing that knows the format you want to use. When you parse a String into a Date object, the Date object does not remember anything about the format that the String was in. A Date is just a Date, just like a number is just a number; it doesn't have an inherent format.
5. When you print a Date object "directly" (by explicitly or implicitly calling toString() on it), it will be printed using a default format, that will make it look like 'Fri Jun 28 09:16:39 CEST 2013'. You cannot change that default format. If you want it to be displayed in a different format, you need to format it using a DateFormat object.
Parsing a string into a date
Parsing a String to a Date can be done with the DateFormat class.
Note that you must include the seconds in the time in order for the LONG format to work.
Also, you cannot use getTimeInstance with a string that includes anything other than a time,
such as the date and time in d1, below:
If you only want to check for validity, or don't want to catch the ParseException, DateFormat has a second parse method that takes a ParsePosition:
Formatting dates
If you want to format a Date into a String according to a format you want, you can use the SimpleDateFormat class. A simple example:
Daylight Savings Time
This is a snippet of code that will convert from BST (British Summer Time) to GMT:
How many days in a given month?
A little code snippet that calculates the number of days in a particular month, taking leap years into account.
Although the above works, java.util.Calendar has built-in support for this without hard-coding the number of days:
Deprecated methods in java.util.Date
Do not shy away from java.util.Date just because it contains plenty of deprecated methods. They aren't deprecated because they produce incorrect results, but because a more powerful API is available with java.util.Calendar and its associated classes. If Date does what you need, you may wish to avoid the comparatively more complex Calendar class.
Note that Date objects do not have an associated timezone, though, so if you need to work with dates from different timezones, Calendar is a better choice. Also, Calendar takes Daylight Savings Time into account, whereas Date does not - that's important if you want to perform arithmetic on dates/times.
CategoryFaq