获取星期几,周一到周日,返回1-7

 public int getDayOfWeek(Date date) {
  Calendar c = Calendar.getInstance();
  c.setTime(date);
  int d = c.get(Calendar.DAY_OF_WEEK) - 1;
  if (d == 0) {
   return 7;
  }
  return d;
 }

原文地址:https://www.cnblogs.com/cuijinlong/p/6230245.html