java – Joda时间,获取工作日[复制]

前端之家收集整理的这篇文章主要介绍了java – Joda时间,获取工作日[复制]前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
参见英文答案 > joda time – add weekdays to date4个
如何使本地日期只计算周日期?

例如

@H_502_5@LocalDate date = new LocalDate(); date.plusDays(10); //it returns plus days including sat and sun as 2013-03-21 //i am looking for a way date.plusDays(10); //should return as 2013-03-26

我想找个方法去除周末?

解决方法@H_301_11@
使用getDayOfWeek()方法.回报如下.为了只获得工作日…你只需要检查返回值是否小于或等于5. @H_502_5@public static final int MONDAY = 1; public static final int TUESDAY = 2; public static final int WEDNESDAY = 3; public static final int THURSDAY = 4; public static final int FRIDAY = 5; public static final int SATURDAY = 6; public static final int SUNDAY = 7;

猜你在找的Java相关文章