How would I go about getting the first day of the month? So for January, of this year, it would return Sunday. And then for February it would return Wednesday.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
To get the first date of the current month, use java.util.Calendar. First get an instance of it and set the field *Calendar.DAY_OF_MONTH* to the first date of the month.Since the first day of any month is 1, inplace of *Calendar.getInstance().getActualMinimum(Calendar.DAY_OF_MONTH)*, 1 can be used here.
|
||||
|
|
|
Create
|
||||
|
|
From there you can see if the int is equal to Calendar.SUNDAY, Calendar.MONDAY, etc. |
|||
|
|
|
You can enter any date to the calender and set(Calendar.DAY_OF_MONTH, 1) to get first day of a month.
|
|||
|
|