Java如何以短格式顯示月份?

2019-10-16 22:30:41

在Java中,如何顯示短格式的月份名稱?

使用DateFormatSymbols().DateFormatSymbols類的getShortMonths()方法,本範例顯示了幾個月的簡寫名稱。

package com.yiibai;

import java.text.SimpleDateFormat;
import java.text.DateFormatSymbols;

public class DisplayingMonthsShortFormat {
    public static void main(String[] args) {
        String[] shortMonths = new DateFormatSymbols().getShortMonths();

        for (int i = 0; i < (shortMonths.length - 1); i++) {
            String shortMonth = shortMonths[i];
            System.out.println("shortMonth = " + shortMonth);
        }
    }
}

上述程式碼範例將產生以下結果,結果將根據當前系統時間而有變化。

shortMonth = 一月
shortMonth = 二月
shortMonth = 三月
shortMonth = 四月
shortMonth = 五月
shortMonth = 六月
shortMonth = 七月
shortMonth = 八月
shortMonth = 九月
shortMonth = 十月
shortMonth = 十一月
shortMonth = 十二月

以下是日期,時間和短時間的另一個範例。

package com.yiibai;

import java.text.Format;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Locale;
import java.util.Calendar;

public class DisplayingMonthsShortFormat2 {
    public static void main(String[] argv) throws Exception {
        String str1 = "yyyy-MM-dd";
        Date d = Calendar.getInstance().getTime();
        SimpleDateFormat sdf = new SimpleDateFormat(str1, Locale.FRENCH);
        System.out.println(sdf.format(d));
        sdf = new SimpleDateFormat(str1, Locale.ENGLISH);
        System.out.println(sdf.format(d));
    }
}

上述程式碼範例將產生以下結果(結果取決於當前日期)。

2017-09-17
2017-09-17