Home Java Java-get-example Java Get Month



Java Get Month
Posted on: October 15, 2008 at 12:00 AM
In the previous Java examples, we have discussed about date functions and how to get the current date and time.

Java Get Month

     

In the previous Java examples, we have discussed about date functions and how to get the current date and time. But in this example, we are going to show the current month of the existing year. This Java get month example is simply going to print the current month name like January, February etc..

For this purpose we have import the java.util.Calendar package in our program. 

 

 

Syntax for Getting the current month in Java

import java.util.Calendar;
 
public class GetMonth
{
  public static void main(String[] args)
  {
  String[] months = {"January""February",
  "March""April""May""June""July",
  "August""September""October""November",
  "December"};
 
  Calendar cal = Calendar.getInstance(); 
  String month = months[cal.get(Calendar.MONTH)];
  System.out.println("Month name: " + month);
  }
}

Output will be displayed as:

Download Source Code

Related Tags for Java Get Month:
javacdatetimefunctionsfunctionfuniosedprintgetexamplesvinameintthislikeshowexampleunctoexamsseshearemonthliimcurrentinmntoutstijesfuncmehowyearxaxampsdiscatplykishaimemplpregodiscusseaexistingandarsimvaxissrirenthshoavstabexifeetcetcpleplprndono


More Tutorials from this section

Ask Questions?    Discuss: Java Get Month  

Post your Comment


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

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.