Home Java Java-get-example Java get year from date
Questions:Ask|Latest



Java get year from date
Posted on: November 1, 2008 By Deepak Kumar
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.

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


Recommend the tutorial

Ask Questions?    Discuss: Java get year from date  

Post your Comment


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