我需要找到当前月份并进行打印。我有以下代码:
this.currentDate=LocalDate.now();
this.month = this.currentDate.getMonth();
问题在于该月份是英语,我需要用法语打印,以与网站的其他语言匹配。如何选择LocalDate.now()
方法提供的月份语言,而不必每次显示时都需要手动翻译?
答案 0 :(得分:2)
您可以使用DateTimeFormatter
为法语创建格式器,如下所示:
final DateTimeFormatter formatter = DateTimeFormatter.ofPattern("EEEE, dd MMMM, yyyy", Locale.FRENCH);
final String month = LocalDate.now().format(formatter);
答案 1 :(得分:2)
您可以使用Month
将String
类型转换为getDisplayName()
,这可以将语言环境更改为法语,如下所示:
this.currentDate = LocalDate.now();
this.month = this.currentDate.getMonth().getDisplayName(TextStyle.FULL, Locale.FRANCE);