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