Problem Description: How to find which week of the year, month? Solution: The following example…
Problem Description:
How to find which week of the year, month?
Solution:
The following example displays week no of the year & month.
import java.util.*; publicclassMain{ publicstaticvoid main(String[] args)throwsException{ Date d1=newDate(); Calendar cl=Calendar. getInstance(); cl.setTime(d1); System.out.println(“today is ” + cl.WEEK_OF_YEAR+” week of the year”); System.out.println(“today is a “+cl.DAY_OF_MONTH+ “month of the year”); System.out.println(“today is a “+cl.WEEK_OF_MONTH +”week of the month”); } }Result:
The above code sample will produce the following result.
today is 30 week of the year today is a 5month of the year today is a 4week of the month
