Wednesday 16 January 2019

How to use toPattern() method of java.text.SimpleDateFormat class


Click here to watch on Youtube:
https://www.youtube.com/watch?v=APhYCGFtvD8&list=UUhwKlOVR041tngjerWxVccw

SimpleDateFormatDemo.java

import java.text.DateFormat;
import java.text.SimpleDateFormat;

public class SimpleDateFormatDemo
{
    public static void main(String[] args)
    {

        SimpleDateFormat df = (SimpleDateFormat) DateFormat.getDateInstance();

        /*
         * Returns:a pattern string describing this date format.
         */


        String strPattern = df.toPattern();
        System.out.println(strPattern);

        df = (SimpleDateFormat) DateFormat.getDateTimeInstance();

        strPattern = df.toPattern();
        System.out.println(strPattern);
    }

}

Output:

MMM d, yyyy
MMM d, yyyy h:mm:ss a

Click the below link to download the code:
https://sites.google.com/site/javaspringram2019/java_spring_2019/SimpleDateFormatDemo_toPattern.zip?attredirects=0&d=1

Github Link:
https://github.com/ramram43210/Java_Spring_2019/tree/master/Java_2019/SimpleDateFormatDemo_toPattern

Bitbucket Link:
https://bitbucket.org/ramram43210/java_spring_2019/src/4327965661b34e0cc17880946800be5f5d73f2dd/Java_2019/SimpleDateFormatDemo_toPattern/?at=master

See also:
  • All JavaEE Videos Playlist
  • All JavaEE Videos
  • All JAVA EE Links
  • Spring Tutorial
  • Servlets Tutorial
  • All Design Patterns Links
  • JDBC Tutorial
  • Java Collection Framework Tutorial
  • JAVA Tutorial
  • Kids Tutorial
  • Cooking Tutorial
  • No comments:

    Post a Comment