java – Localdate:带语言环境的格式
作者:互联网
我正在尝试格式化LoacalDate,但我没有找到任何信息.我需要格式化为另一种语言.这个案子就是我希望用西班牙语获得一年中的一个月.我正在尝试使用:
Locale locale = new Locale("es", "ES");
但我找不到SimpleDateFormat或类似LocalDate格式.
LocalDate.now().getMonth();
谁能帮我?
解决方法:
对不起,我使用了旧的(也是更常用的)Java日期时间类,因为你谈到的是SimpleDateFormat,它是旧API的一部分.
当您使用java.time.LocalDate时,您必须使用的格式化程序是java.time.format.DateTimeFormatter:
final DateTimeFormatter formatter = DateTimeFormatter.ofPattern("MMM", aLocale);
final String month = LocalDate.now().format(formatter);
标签:java,date,datetime-format 来源: https://codeday.me/bug/20190716/1475501.html