Javaでこの機能を完了するのを手伝ってくれる人はいますか? ありがとう
// e.g. "20130218001203638"
boolean isWeekend(String date)
{
... ...
}
私が望む正確な答えを提供する投稿を見つけてください。
Javaでこの機能を完了するのを手伝ってくれる人はいますか? ありがとう
// e.g. "20130218001203638"
boolean isWeekend(String date)
{
... ...
}
私が望む正確な答えを提供する投稿を見つけてください。
Calendar#get(DAY_OF_WEEK)
SUNDAY、MONDAY、... という値を返します。
で条件付きで確認できるものCalendar.SATURDAY or Calendar.SUNDAY
。
このようなものが役立つはずです:
boolean isWeekend = false;
Date date = new Date();
//assuming your date string is time in long format,
//if not then use SimpleDateFormat class
date.setTime(Long.parseLong("20130218001203638"));
Calendar calendar = new GregorianCalendar();
calendar.setTime(date);
if(calendar.get(Calendar.DAY_OF_WEEK) == Calendar.SATURDAY ||
calendar.get(Calendar.DAY_OF_WEEK) == Calendar.SUNDAY){
isWeekend = true;
}
return isWeekend;
日付計算が面倒くさいように
SimpleDateFormat df = new SimpleDateFormat("yyyyMMdd");
Date d = df.parse(date);
Calendar cal = Calendar.getInstance();
cal.setTime(d);
int wday = cal.get(Calendar.DAY_OF_WEEK);
return wday == Calendar.SATURDAY || wday == Calendar.SUNDAY;