列出短月份名称的 Java 程序
要列出短月份,请使用getShortMonths()Java中DateFormatSymbols类中的。
DateFormatSymbols是用于封装可本地化的日期时间格式数据的类。
获取数组中的短月份名称
String[] months = new DateFormatSymbols().getShortMonths();
显示月份
for (int i = 0; i以下是一个例子-
示例
import java.text.DateFormatSymbols; public class Demo { public static void main(String[] args) { //短短几个月 String[] months = new DateFormatSymbols().getShortMonths(); for (int i = 0; i输出结果 Month [0] = Jan Month [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