Java: get Minutes 및 get Hours 이후의 Date.getHours ★★★★★★★★★★★★★★★★★」Date.getMinutes천을을 받지 ?? ???구글 검색에서 찾은 예시는 사용되지 않는 방법을 사용했습니다.표준 java.util 대신 Joda Time을 사용해 보십시오.날짜 클래스Joda Time 라이브러리는 날짜 처리에 훨씬 더 나은 API를 가지고 있습니다. DateTime dt = new DateTime(); // current time int month = dt.getMonth(); // gets the current month int hours = dt.getHourOfDay(); // gets hour of day Joda Time 라이브러리 사용에 대한 장단점은 이 질..