Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Converting Date to Calendar

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
I need help converting a Date object into a Calendar object. How can I do this?

Calendar has a method(getTime) to convert it to a Date Object how can I do the reverse?

Anyone has some code to it?

Thank you a lot
 
When I refer to SomeCalendar, I mean a subclass of the abstract superclass Calendar, for instance a GregorianCalendar.

SomeCalendar calendar = new SomeCalendar();
calendar.setTime(date);
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top