java.time.Month.getDisplayName() 方法示例



描述

java.time.Month.getDisplayName(TextStyle style, Locale locale) 方法获取文本表示形式,例如“1 月”或“12 月”。

声明

以下是 java.time.Month.getDisplayName(TextStyle style, Locale locale) 方法的声明。

public String getDisplayName(TextStyle style, Locale locale)

参数

  • style − 所需的文本长度,非空。

  • locale − 要使用的语言环境,非空。

返回值

年月文本值,非空。

示例

以下示例展示了 java.time.Month.getDisplayName(TextStyle style, Locale locale) 方法的用法。

package com.tutorialspoint;

import java.time.Month;
import java.time.format.TextStyle;
import java.util.Locale;

public class MonthDemo {
   public static void main(String[] args) {
 
      Month day = Month.of(3);
      System.out.println(day.getDisplayName(TextStyle.SHORT,Locale.ENGLISH));  
   }
}

让我们编译并运行上述程序,它将产生以下结果 −

Mar
广告