In this section, you will learn how to obtain the number of days in the specified month.
This example sets the year as 2008, month as Calendar.FEBRUARY and the date as 1 using the method calendar.set(year, month, date) provided by the class Calendar. The Calendar class extends Object class. Calendar class provides a getInstance() method that returns a Calendar object. Here we are going to get the number of days in the month February.
Here is the code of GetDaysInMonth.java
import java.util.Calendar;
|
Output will be displayed as:

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.
Ask Questions? Discuss: Java get number of Days in Month
Post your Comment