如何更改LocalDate提供的月份的语言?

时间:2018-08-14 14:25:07

标签: java translation localdate

我需要找到当前月份并进行打印。我有以下代码:

this.currentDate=LocalDate.now();
this.month = this.currentDate.getMonth();

问题在于该月份是英语,我需要用法语打印,以与网站的其他语言匹配。如何选择LocalDate.now()方法提供的月份语言,而不必每次显示时都需要手动翻译?

2 个答案:

答案 0 :(得分:2)

您可以使用DateTimeFormatter为法语创建格式器,如下所示:

final DateTimeFormatter formatter = DateTimeFormatter.ofPattern("EEEE, dd MMMM, yyyy", Locale.FRENCH);
final String month = LocalDate.now().format(formatter);

答案 1 :(得分:2)

您可以使用MonthString类型转换为getDisplayName(),这可以将语言环境更改为法语,如下所示:

this.currentDate = LocalDate.now();
this.month = this.currentDate.getMonth().getDisplayName(TextStyle.FULL, Locale.FRANCE);