본문 바로가기

Tip

[JAVA] 하루의 시작 시간과 종료 시간을 얻는 방법 by localDateTime

LocalDateTime curDate = LocalDateTime.now();

 

public LocalDateTime startOfDay() {

return curDate.atStartOfDay();

}

 

public LocalDateTime endOfDay() {

return startOfTomorrow.atTime(LocalTime.MAX); //23:59:59.999999999;

}

 

 

감사합니다.

출처 : https://code-examples.net/ko/q/9d4b04