Display Month of year using Calendar - Java Date Time

Java examples for Date Time:Calendar

Description

Display Month of year using Calendar

Demo Code

 
import java.util.Calendar;

public class Main {

  public static void main(String[] args) {
    Calendar now = Calendar.getInstance();

    System.out.println("Current date : " + (now.get(Calendar.MONTH) + 1) + "-" + now.get(Calendar.DATE) + "-"
        + now.get(Calendar.YEAR));

    String[] strMonths = new String[] { "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov",
        "Dec" };//www.j  ava  2  s. c  om

    System.out.println("Current month is : " + strMonths[now.get(Calendar.MONTH)]);

  }

}

Result


Related Tutorials