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

|