Here you can find the source of getShortMonthString(int month)
public static String getShortMonthString(int month)
//package com.java2s; public class Main { public static final String[] MONTHS_SHORT = { "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" }; public static String getShortMonthString(int month) { return MONTHS_SHORT[month]; }// www . j a v a 2s . c o m }