Java calendar engine

Does anyone know of any engines for implementing a calendar?

For example, which takes an event definition object (it can be iCalendar-style) and the current date as input and outputs if that date matches the event definition?

+2


source to share


1 answer


Hmm. The calendar is difficult.

I've had a very mixed experience with iCal4j - it's not too smart in time zones in some places, but after a bit of work it might be pretty much okay. This will allow you to analyze the iCal records.



Also, I would base everything I can on Joda Time . Definitely avoid built-in classes java.util.Date

/ Calendar

.

+4


source







All Articles