Java Format - Java DateFormat.getCalendar()








Syntax

DateFormat.getCalendar() has the following syntax.

public Calendar getCalendar()

Example

In the following code shows how to use DateFormat.getCalendar() method.

/*from   ww w.j av a2  s  . c om*/
import java.text.DateFormat;
import java.util.Date;

public class Main {
  public static void main(String[] argv) throws Exception {
    DateFormat dateFormat = DateFormat.getDateTimeInstance();
    
    
    String s = dateFormat.format(new Date());
    System.out.println(dateFormat.getCalendar());

  }
}

The code above generates the following result.