Java tutorial
//package com.java2s; import java.util.Calendar; import java.util.Date; public class Main { private static String[] NomeMese = { "GENNAIO", "FEBBRAIO", "MARZO", "APRILE", "MAGGIO", "GIUGNO", "LUGLIO", "AGOSTO", "SETTEMBRE", "OTTOBRE", "NOVEMBRE", "DICEMBRE" }; public static String GetMonthName(Date d) { return NomeMese[GetMonthNumber(d)]; } public static Integer GetMonthNumber(Date d) { Calendar cal = Calendar.getInstance(); cal.setTime(d); return cal.get(Calendar.MONTH); } }