我得到一个整数,并且需要在各种语言环境中转换为月份名称:

本地语言环境示例:
1->一月
2-> 2月

区域设置es-mx的示例:
1-> Enero
2-> Febrero

最佳答案

import java.text.DateFormatSymbols;
public String getMonth(int month) {
    return new DateFormatSymbols().getMonths()[month-1];
}

10-06 15:16