Java Get Month from Date

In the given example, you will see how to retrieve the current month from the
current date using Java Application Language.
You can see in the given example that we have called java.util package that
contains number of framework classes and utilities with date and time facilities
in Java. That means if you want to show the date in your application then you'll
have to call java.util package in the program code.
Java code to Get Month from Date
import java.text.*;
import java.util.*;
public class GetMonthFromDate {
public static void main(String args[]) {
Date date = new Date();
SimpleDateFormat sdf;
sdf = new SimpleDateFormat("MM");
System.out.println("Month " + sdf.format(date));
}
}
|
Output will be displayed as:

Download Source Code

|