Java DateFormat .getDateInstance (int style)

Syntax

DateFormat.getDateInstance(int style) has the following syntax.

public static final DateFormat getDateInstance(int style)

Example

In the following code shows how to use DateFormat.getDateInstance(int style) method.


import java.text.DateFormat;
import java.util.Date;
/*from   w  w  w  .  j  av  a  2 s.c  o  m*/
public class Main {
  public static void main(String[] args) {
    Date date = new Date();

    String strDate = DateFormat.getDateInstance(DateFormat.DEFAULT).format(date);
    System.out.println(strDate);
    
    strDate = DateFormat.getDateInstance(DateFormat.FULL).format(date);
    System.out.println(strDate);
    
    strDate = DateFormat.getDateInstance(DateFormat.LONG).format(date);
    System.out.println(strDate);
    
    strDate = DateFormat.getDateInstance(DateFormat.SHORT).format(date);
    System.out.println(strDate);
  }
}

The code above generates the following result.





















Home »
  Java Tutorial »
    java.text »




DateFormat
DecimalFormat
NumberFormat
SimpleDateFormat