基本上,我想从一周中的当前一天获得星期一的日期。例如:今天是星期二,我想要一个星期一的日期,我会从下面的代码行中得到所需的日期:
val now = LocalDate()
val monday: LocalDate = now.withDayOfWeek(DateTimeConstants.MONDAY)
mondayDate = monday.toString()
但问题是,我得到的日期格式为2021-05-24,我想要这样的格式的日期20-5-2021。现在如何更改日期格式以获得所需的日期格式。
您需要的是一个格式化程序。
DateTimeFormatter dateFormatter = DateTimeFormat.forPattern("d-M-y");
LocalDate now = new LocalDate();
LocalDate monday = now.withDayOfWeek(DateTimeConstants.MONDAY);
String mondayDate = monday.toString(dateFormatter);
System.out.println(mondayDate);
输出是您所要求的:
24-5-2021