如何将LocalDate格式化为字符串?

我有一个名为date的LocalDate变量,当我打印它时显示1988-05-05,我需要将此变量转换为要打印为1988年5月5日。如何执行此操作?

回答:

如果他从Java

8中的新功能LocalDate开始,SimpleDateFormat将无法工作。从我所看到的,您将不得不使用DateTimeFormatter,http://docs.oracle.com/javase/8/docs/api/java/

time / format /

DateTimeFormatter.html。

LocalDate localDate = LocalDate.now();//For reference

DateTimeFormatter formatter = DateTimeFormatter.ofPattern("dd LLLL yyyy");

String formattedString = localDate.format(formatter);

该日期应为1988年5月5日。要获取第二天之后和该月之前的时间,您可能必须使用“ dd’.LLLL y​​yyy”

以上是 如何将LocalDate格式化为字符串? 的全部内容, 来源链接: utcz.com/qa/432338.html

回到顶部