I want to build a date widget for a form, which has a select list of months, days, years. since the list is different based on the month and year, i cant hard code it to 31 days. (e.g february has 28 days not 30 or 31 and some years even 29 days) How can I use the calendar or joda object to build me these lists.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
I strongly recommend that you avoid the built-in date and time APIs in Java. Instead, use Joda Time. This library is similar to the one which will (hopefully!) make it into Java 7, and is much more pleasant to use than the built-in API. Now, is the basic problem that you want to know the number of days in a particular month? EDIT: Here's the code (with a sample):
|
|||||||||||
|
|
The Calendar object will tell you the number of days in the current month using From that you can update your lists on each change. |
|||
|
|
|
There are a number of date picker implementations out there for java, which can be used via swing or a web ui. I would attempt to reuse one of these and avoid writing your own. |
|||
|
|