Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to ask if someone knows any API or something similar that allows me to manage concrete parts of day (for example working hours)

My problem is that I have to manage times in the next context:

imagine I am working in a company which working hours is "8am-2pm" and "3pm-6pm" and with a daylight saving time from "8am to 2pm". I want to know if a concrete moment of a concrete date is a laboral moment or if it isn't.

For example if I have the mentioned calendar, and I ask the API if the "13th august 2012 at 9pm" is a working moment it has to check it and return a correct answer (false in this case) and if I ask if the "13th august 2012 at 9am" is a working moment it has to return "true"

Other important thing related. I have to calculate intervals between two dates with the mentioned calendar. For example, if i set begin time as "today at 5pm" and end time "tomorrow at 10am" it has to return 3 hours (or its equivalent in seconds or milliseconds) because it is the correct time period passed between the begin date and the end date in this calendar.

It also has to work with holidays (particular of each country). I found an API call "JollyTime" but, although it works with holidays, it does not support the working hours...

Any idea?

share|improve this question
1  
I'd check out Joda Time (joda-time.sourceforge.net), especially it's period & duration capabilities. As to things like day light savings & holidays, you'reobably going to have to provide your own API forint to meaningful & accurate – MadProgrammer Aug 13 '12 at 12:14
@MadProgrammer fyi, "its" has no apostrophe when it means "belongs to it" – Bohemian Aug 13 '12 at 12:29
I guess for the special requirements you will have to do the implementation by yourself... – brimborium Aug 13 '12 at 12:31
ok, thanks all...if i have no alternative i will create the implementation by myself! – davidml Aug 13 '12 at 12:47
@boheman @ 3am, on iPad, one tends not to take notice of these things ;P – MadProgrammer Aug 13 '12 at 19:17

1 Answer

Take a look at the JODA Time library. I know it has intervals and might be just what you need.

share|improve this answer
The intervals in joda time are NOT what he needs. He's looking for intervals during working hours only. Ie. with 1 hour left in the working day to 1 hour into the next working day would be a 2 hour interval, not 16 (or whatever it would be chronologically). But i do agree that Joda-Time is the best library for doing any date / time calculations. Java's built in date/time handling is really bad. – Matt Aug 13 '12 at 13:17

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.