如何使用 DateTimeFormatter.ofPattern() 获取完整的月份名称
How to get full month name with DateTimeFormatter.ofPattern()
当我使用此代码获取实际日期时:
String dateActuelle = DateTimeFormatter.ofPattern("dd MMMM uuuu").format(LocalDate.now());
它 returns "06 sept. 2021" 法语,但我想得到 "06 septembre 2021" (完整的月份名称)。
你知道我该怎么做吗?
使用 MMMM
它将给出完整的月份名称,例如 September
而 MMM
将给出月份的简称,例如 Sept
请确认您在代码格式化时可能输入了 3 个 M。
当我使用此代码获取实际日期时:
String dateActuelle = DateTimeFormatter.ofPattern("dd MMMM uuuu").format(LocalDate.now());
它 returns "06 sept. 2021" 法语,但我想得到 "06 septembre 2021" (完整的月份名称)。
你知道我该怎么做吗?
使用 MMMM
它将给出完整的月份名称,例如 September
而 MMM
将给出月份的简称,例如 Sept
请确认您在代码格式化时可能输入了 3 个 M。