get Month Name - Java java.util

Java examples for java.util:Month

Description

get Month Name

Demo Code


//package com.java2s;

public class Main {
    public static String getMonthName(int month) {
        switch (month) {
        case 1:/*from  ww  w  .  j ava2  s .co m*/
            return "January";
        case 2:
            return "February";
        case 3:
            return "March";
        case 4:
            return "April";
        case 5:
            return "May";
        case 6:
            return "June";
        case 7:
            return "July";
        case 8:
            return "August";
        case 9:
            return "September";
        case 10:
            return "October";
        case 11:
            return "November";
        case 12:
            return "December";
        default:
            return "";
        }
    }
}

Related Tutorials