Wednesday 16 January 2019

How to use getNumberFormat() method of java.text.DateFormat class


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

DateFormatDemo.java

import java.text.DateFormat;
import java.text.NumberFormat;

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

        DateFormat dateFormat = DateFormat.getTimeInstance(DateFormat.LONG);

        /*
         * Returns:
         *
         * the number formatter which this date/time formatter uses.
         */

        NumberFormat numberFormat = dateFormat.getNumberFormat();
        System.out.println(numberFormat);

    }

}

Output:

java.text.DecimalFormat@674dc

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

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

Bitbucket Link:
https://bitbucket.org/ramram43210/java_spring_2019/src/4327965661b34e0cc17880946800be5f5d73f2dd/Java_2019/DateFormatDemo_getNumberFormat/?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