Get Month of year using Calendar in Java
Description
The following code shows how to get Month of year using Calendar.
Example
/*from w ww .ja v a2 s . c om*/
import java.util.Calendar;
public class Main {
public static void main(String[] args) {
Calendar now = Calendar.getInstance();
System.out.println("Current date : " + (now.get(Calendar.MONTH) + 1) + "-"
+ now.get(Calendar.DATE) + "-" + now.get(Calendar.YEAR));
String[] strMonths = new String[] { "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug",
"Sep", "Oct", "Nov", "Dec" };
System.out.println("Current month is : " + strMonths[now.get(Calendar.MONTH)]);
}
}
The code above generates the following result.