Home Java Javadate Year Format Example



Year Format Example
Posted on: October 13, 2008 at 12:00 AM
This example shows how to format Year using Format class. In this program we use a pattern of special characters to format week day.

Year Format Example

     

This example shows how to format Year using Format class. In this program we use a pattern of special characters to format week day.

Description of the code :

SimpleDateFormat() : SimpleDateFormat class use for formatting and parsing dates. It allows for formatting date into text , parsing text into date and normalization.

format() : This method used for format Date class object into date / time and appends the it into the StringBuffer.

YearFormat.java


import java.text.*;
import java.util.*;

public class YearFormat {

color="#ffffff">  public static void main(String args[]) {

  String s;
  Format formatter;
  Date date = new Date();

  formatter = new SimpleDateFormat("yy");  // 02
  s = formatter.format(date);
  System.out.println("Year : " + s);

  formatter = new SimpleDateFormat("yyyy");  // 2002
  s = formatter.format(date);
  System.out.println("Year : " + s);
  }
}


Output

Year : 08
Year : 2008

Download code

Related Tags for Year Format Example:
cclassormformformatcharpatternusingthischaractercharactersshowforexamplecteprogramtoramexamciwssheareusepeinrmasmweekclspecialspechowprodayyearxaxampsspeeatrackishampleaaractttssthshopleplprogro


More Tutorials from this section

Ask Questions?    Discuss: Year Format Example  

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.