Is there a Java equivalent of DateTime.MinValue and DateTime.Today in the Java Date class? Or a way of achieving something similar?
I've realised how spoilt you are with the .NET datetime class, I also need the equivalent of AddDays(), AddMonths().
|
|
|
The de-facto Java datetime API is joda-time. With it, you can get the current date/time by just constructing Similarly, Without it, you can use
|
|||||||||||
|
|
Most date manipulation should be done using the Calendar object now. http://download.oracle.com/javase/6/docs/api/java/util/Calendar.html |
|||||||||||||
|
|
to get the current date: Calendar calendar = Calendar.getInstance(); SimpleDateFormat dateFormat = new SimpleDateFormat("dd/MM/yyyy");
|
|||
|
|
|
Theres calendar http://download.oracle.com/javase/1.5.0/docs/api/java/util/Calendar.html And date http://download.oracle.com/javase/1.4.2/docs/api/java/util/Date.html Theres also simpledateformat for formatting. http://download.oracle.com/javase/1.4.2/docs/api/java/text/SimpleDateFormat.html |
|||
|
|