반응형
통계 프로그램 짤 일이 있어서 구현해본 소쑤~
/* 금주의 일요일 날짜와 토요일 날짜 구하기 */
Calendar calendar = Calendar.getInstance();
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
int iDayOfWeek = calendar.get(Calendar.DAY_OF_WEEK)-1;
Date dt = new Date();
long unix_time = dt.getTime()/1000;
long startDate = unix_time - iDayOfWeek*86400;
long endDate = unix_time;
for(int y=iDayOfWeek; y < 6; y++) {
endDate = endDate+86400;
}
Date dt2 = new Date(startDate*1000);
Date dt3 = new Date(endDate*1000);
String sStart = sdf.format(dt2);
String sEnd = sdf.format(dt3);
/* /금주의 일요일 날짜와 토요일 날짜 구하기 */
반응형