我需要找到当前月份并打印出来。我有以下代码:
this.currentDate=LocalDate.now();
this.month = this.currentDate.getMonth();
问题是月份是英文的,我需要用法文打印,以匹配网站语言的其余部分。如何选择
LocalDate.now()
方法提供的月份语言,而不需要每次需要显示时都做手动翻译?
您可以使用
Month
将 String
类型转换为 getDisplayName()
,这样可以将语言环境更改为法语,如下所示:
this.currentDate = LocalDate.now();
this.month = this.currentDate.getMonth().getDisplayName(TextStyle.FULL, Locale.FRANCE);
您可以使用
DateTimeFormatter
创建法语格式化程序,如下所示:
final DateTimeFormatter formatter = DateTimeFormatter.ofPattern("EEEE, dd MMMM, yyyy", Locale.FRENCH);
final String month = LocalDate.now().format(formatter);
就我而言,没有 ENUM 国家/地区选项,然后我使用默认值并解决了:
LocalDate.now().getMonth().getDisplayName(TextStyle.FULL, Locale.getDefault())