列出短月份名称的 Java 程序
要列出短月份,请使用getShortMonths()Java 中 DateFormatSymbols 类中的 。
DateFormatSymbols 是用于封装可本地化的日期时间格式数据的类。
获取数组中的短月份名称
String[] months = new DateFormatSymbols().getShortMonths();
显示月份
for (int i = 0; i <months.length- 1; i++) {String month = months[i];
System.out.println("Month ["+i+"] = " + month);
}
以下是一个例子 -
示例
import java.text.DateFormatSymbols;输出结果public class Demo {
public static void main(String[] args) {
// 短短几个月
String[] months = new DateFormatSymbols().getShortMonths();
for (int i = 0; i <months.length- 1; i++) {
String month = months[i];
System.out.println("Month ["+i+"] = " + month);
}
}
}
Month [0] = JanMonth [1] = Feb
Month [2] = Mar
Month [3] = Apr
Month [4] = May
Month [5] = Jun
Month [6] = Jul
Month [7] = Aug
Month [8] = Sep
Month [9] = Oct
Month [10] = Nov
Month [11] = Dec
以上是 列出短月份名称的 Java 程序 的全部内容, 来源链接: utcz.com/z/343865.html