Home Java Java-get-example Java get Year



Java get Year
Posted on: November 1, 2008 at 12:00 AM
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

Related Tags for Java get Year:
cideclassobjectcalendariomethodgetvireturninstancethisidaitolearneareildessectioncecurrentincalasstamntcajndaclesendmehowobjproyearsurnatishalleaarssrenthsthatjeprndono


More Tutorials from this section

Ask Questions?    Discuss: Java get Year   View All Comments

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.