I have a Date object in Java stored as Java's Date type.
I also have a Gregorian Calendar created date. The gregorian calendar date has no parameters and therefore is an instance of today's date (and time?).
With the java date, I want to be able to get the year, month, day, hour, minute, and seconds from the java date type and compare the the gregoriancalendar date.
I saw that at the moment the Java date is stored as a long and the only methods available seem to just write the long as a formatted date string. Is there a way to access Year, month, day, etc?
I saw that the getYear()
, getMonth()
, etc. methods for Date
class have been deprecated. I was wondering what's the best practice to use the Java Date instance I have with the GregorianCalendar
date.
My end goal is to do a date calculation so that I can check that the Java date is within so many hours, minutes etc of today's date and time.
I'm still a newbie to Java and am getting a bit puzzled by this.
Date.getYear()
.It suffers from problems(that i don't know).Date.getYear()
once parsed my date 30/06/2017 and it returned my year as 117. See where it landed, two thousand years back. But when i print simply the Date Object,Output was Fine.But notDate.getYear();
. – Seenivasan