|
Java™ by example!
|
|
|
How do I get the number of days in a month?
You can set the Calendar instance with the highest number possible for months. If the actual number of days in that month is smaller than that maximum, the Calendar instance will automatically change the month (so for example if you would say "the 40th of January 2000", Calendar will change this to "the 9th of February 2000"). So roll back the Calendar by one day every time until the member month of calendar turns out to be the month you are looking for. Main.java:
outputs:
Further Information
Author of answer: Joris Van den Bogaert
Comments to this answer are only viewable by members. Login or become a member!
|
|
|
|
|