标签: java jodatime dayofweek
JodaTime中是否有任何工具将周日(Mon = 1,Sun = 7)转换为java.util常量集(Sun = 1,Sat = 7)?或者你真的必须写像
return localDate.getDayOfWeek() % 7 + 1;