Java month getDisplayName()方法
getDisplayName() 方法是Month ENUM的一个内置方法,用于获取这个Month实例所指定的年份月份的文本表示。
语法:
public String getDisplayName(TextStyle style,
Locale locale)
参数 :该方法接受两个参数,如下所述。
- style : 这个参数指定了要使用的文本的样式或长度,即短、长等。
- locale : 这个参数指定要使用的locale。
返回值 :该方法返回这个Month实例所指定的月份的文本表示。
下面的程序说明了上述方法。
程序1 :
import java.time.*;
import java.time.Month;
import java.time.format.TextStyle;
import java.util.Locale;
class monthEnum {
public static void main(String[] args)
{
// Create a month instance
Month month = Month.of(3);
// Generate textual representation
System.out.println(month.getDisplayName(TextStyle.SHORT,
Locale.ENGLISH));
}
}
输出。
Mar
程序2 :
import java.time.*;
import java.time.Month;
import java.time.format.TextStyle;
import java.util.Locale;
class monthEnum {
public static void main(String[] args)
{
// Create a month instance
Month month = Month.of(12);
// Generate textual representation
System.out.println(month.getDisplayName(TextStyle.SHORT,
Locale.ENGLISH));
}
}
输出。
Dec
参考资料 : https://docs.oracle.com/javase/8/docs/api/java/time/Month.html#getDisplayName-java.time.format.TextStyle-java.util.Locale-