Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am writing the logic around the java Calender. I have following requirements.

  • Working on day of week calender which contains 4 weeks in a month. Need to select Day of a week for a month. If selected week day is passed then for next month same week day has to be selected.
  • If a month start on Saturday then seceond Monday will be 10th of that month rather than 3rd.

Please let me know if there are any utility is available in java to achieve above or any sample code will be much appreciated.

share|improve this question
"If a month start on Saturday then seceond Monday will be 10th of that month rather than 3rd." Am I missing something here? – RNJ Jan 2 at 17:35
4  
One word: Look into JODA. – duffymo Jan 2 at 17:36
4  
That second requirement sounds less like a requirement and more like a statement by somebody who can count. What's the actual issue here? – David Jan 2 at 17:36

closed as not a real question by Brian Roach, BalusC, jlordo, thkala, Joseph Mastey Jan 2 at 18:24

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

Take a look at JodaTime, the only good Date API for Java.

share|improve this answer

Look at the DateUtils class from Apache commons-lang library. It contains some useful methods for working with Calendar and Date.

share|improve this answer

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