Home Java Javadate Parsing Date Example



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

Parsing Date Example

     

This example shows how to parsing date using Format class. In this program we use a pattern of special characters to time format.

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 is used for format Date class object into date / time and appends the it into the StringBuffer.

ParsingDate.java

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

public class ParsingDate {
nt>
  public static void main(String args[]) throws Exception {

  String s;
  DateFormat formatter;
  Date date;

  formatter = new SimpleDateFormat("MM/dd/yy");

  // parse date according to the given format

  date = (Dateformatter.parse("1/29/08");
   //
01/29/08
  s = formatter.format(date);
 
  System.out.println(s);

  formatter = new SimpleDateFormat("DD/MM/yy");
  date = (Dateformatter.parse("1/1/08");
  //
01/01/08
  s = formatter.format(date);
  System.out.println(s);

  formatter = new SimpleDateFormat("dd-MMM-yy");
  date = (Dateformatter.parse("29-Jan-08");
//
29-Jan-08
  s = formatter.format(date);
  System.out.println(s);
  }
}

Output:
01/29/08
01/01/08
29-Jan-08

Download code

Related Tags for Parsing Date Example:
cparsingclassormdateformtimeformatcharpatternusingthischaractercharactersshowforexamplecteprogramtoramexamciwsshersiusepeiminrmasmparclspecialspecmehowproxaxampsspatracishaimemplaractttssthshopleplprogro


More Tutorials from this section

Ask Questions?    Discuss: Parsing Date 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.