Java Date Time - Java Calendar LONG








Syntax

Calendar.LONG has the following syntax.

public static final int LONG

Example

In the following code shows how to use Calendar.LONG field.

//from   www  .ja va2  s.co  m
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.