How to display name of a month in (MMM) format ?


Levels of difficulty: / perform operation:

JAVA Program

import java.util.Calendar;
import java.util.Formatter;
public class MainClass {
	public static void main(String args[]) {
		Formatter fmt = new Formatter();
		Calendar cal = Calendar.getInstance();
		fmt = new Formatter();
		fmt.format("%tB %tb %tm", cal, cal, cal);
		System.out.println(fmt);
	}
}

Output

October Oct 10