且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

如何将LocalDate对象格式化为MM / dd / yyyy,并且格式保持不变

更新时间:2022-12-15 12:45:52

EDIT: Considering your edit, just set parsedDate equal to your formatted text string, like so:

parsedDate = text;


A LocalDate object can only ever be printed in ISO8601 format (yyyy-MM-dd). In order to print the object in some other format, you need to format it and save the LocalDate as a string like you've demonstrated in your own example

DateTimeFormatter formatters = DateTimeFormatter.ofPattern("d/MM/uuuu");
String text = date.format(formatters);