Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import java.text.DateFormatSymbols;

import java.util.Locale;

public class Main {
    public static String getFullNameOfMonth(final Locale locale, final int month) {
        return DateFormatSymbols.getInstance(locale).getMonths()[month];
    }
}