Search This Blog

Thursday, January 5, 2017

Hàm - Lấy thứ hiện tại

public static int GetDay_Of_Week()
{
Date date = new Date();

 Calendar cal = Calendar.getInstance();
 cal.setTime(date);
 int intDayOfWeek = cal.get(Calendar.DAY_OF_WEEK);
 return intDayOfWeek;

}

No comments:

Post a Comment