如何在 android studio 中使用 org.joda.time.LocalDate 更改我的日期格式?

How can I change my date format using org.joda.time.LocalDate in android studio?

基本上,我想从当前星期几获取星期一的日期。 例如:今天是星期二,我想要一个星期一的日期,我将从以下代码行中获取所需的日期:

 val now = LocalDate()
 val monday: LocalDate = now.withDayOfWeek(DateTimeConstants.MONDAY)
        mondayDate = monday.toString()
       

但问题是我得到的日期格式为 2021-05-24,我希望日期格式为 24-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