Home Java Java-get-example Java get Year
Questions:Ask|Latest



Java get Year
Posted on: November 1, 2008 By Deepak Kumar
In this section, you will learn how to obtain the current year. The Calendar class provides a getInstance() method that returns a Calendar object.

Java get Year

     

In this section, you will learn how to obtain the current year. The Calendar class provides a getInstance()  method that returns a Calendar object. The method cal.get(Calendar.YEAR) will return the current year.

Here is the code of GetYear.java

import java.util.*;
public class GetYear {
  public static void main(String []arg){
  Calendar cal=Calendar.getInstance();
  int year=cal.get(Calendar.YEAR);
  System.out.println("Current Year: "+year );
  }
  }

Output will be displayed as:

Download Source Code


Recommend the tutorial

Ask Questions?    Discuss: Java get Year   View All Comments

Post your Comment


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