Java tutorial
//package com.java2s; //License from project: GNU General Public License import java.util.Vector; public class Main { public static String getMonthNameShort(Integer pos) { Vector<String> monthsShort = new Vector<String>(); monthsShort.add("Jan"); monthsShort.add("Feb"); monthsShort.add("Mar"); monthsShort.add("Apr"); monthsShort.add("May"); monthsShort.add("Jun"); monthsShort.add("Jul"); monthsShort.add("Aug"); monthsShort.add("Sep"); monthsShort.add("Oct"); monthsShort.add("Nov"); monthsShort.add("Dec"); return monthsShort.get(pos); } }