Home Java Java-get-example Java Get Month from Date
Questions:Ask|Latest



Java Get Month from Date
Posted on: October 15, 2008 By Deepak Kumar
In the given example, you will see how to retrieve the current month from the current date using Java Application Language.

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


Recommend the tutorial

Ask Questions?    Discuss: Java Get Month from Date   View All Comments

Post your Comment


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 
Comments