I am new to Joda-Time and was looking at getting the previous working/week day. My initial try was done on a Monday and I wanted to get the date for T -1 which will be Friday:
DateTimeZone zone = DateTimeZone.forID("Europe/London");
Chronology coptic = GJChronology.getInstance(zone);
DateTime dt = new DateTime(coptic);
DateTime minusOneDay = dt.minusDays(1);
System.out.println(minusOneDay );
But as I expected returns the date on Sunday. Does anyone know how to get the previous week day? Thanks in advance..