Java Date Time - Java Calendar.getDisplayName(int field, int style, Locale locale)








Syntax

Calendar.getDisplayName(int field, int style, Locale locale) has the following syntax.

public String getDisplayName(int field,   int style,   Locale locale)

Example

In the following code shows how to use Calendar.getDisplayName(int field, int style, Locale locale) method.

//w ww. ja  va  2  s  . com
import java.util.Calendar;
import java.util.Locale;

public class Main {

  public static void main(String[] args) {

    Calendar now = Calendar.getInstance();
    Locale locale = Locale.getDefault();

    String n = now.getDisplayName(Calendar.DAY_OF_WEEK, Calendar.LONG, locale);
    
    System.out.printf(n);
  }
}

The code above generates the following result.