试试LocalDate.withDayOfWeek:
LocalDate now = new LocalDate();System.out.println(now.withDayOfWeek(DateTimeConstants.MONDAY)); //prints 2011-01-17System.out.println(now.withDayOfWeek(DateTimeConstants.SUNDAY)); //prints 2011-01-23

试试LocalDate.withDayOfWeek:
LocalDate now = new LocalDate();System.out.println(now.withDayOfWeek(DateTimeConstants.MONDAY)); //prints 2011-01-17System.out.println(now.withDayOfWeek(DateTimeConstants.SUNDAY)); //prints 2011-01-23