Java get year from date

In this section you will study how to retrieve the year from the date. You
can see in the given example that we have called SimpleDateFormat class showing the
format of year. The method simpleDateformat.format(date) formats a Date into a
date/time string and returns the year.
Here is the code of GetYearFromDate
import java.util.*;
import java.text.*;
ss
public class GetYearFromDate{
public static void main(String[]args){
Date date = new Date();
SimpleDateFormat simpleDateformat=new SimpleDateFormat("yyyy");
System.out.println("Year: " + simpleDateformat.format(date));
}
}
|
Output will be displayed as:

Download Source Code

|