Unixtime으로 현재시간을 가져오고 싶다면 아래와 같이 수행합니다.
System.currentTimeMillis()
Returns the current time in milliseconds. Note that while the unit of time of the return value is a millisecond, the granularity of the value depends on the underlying operating system and may be larger. For example, many operating systems measure time in units of tens of milliseconds. See the description of the class Date for a discussion of slight discrepancies that may arise between "computer time" and coordinated universal time (UTC).
docs.oracle.com/javase/7/docs/api/java/lang/System.html#currentTimeMillis()
반응형
'Programming Language > Java & Scala' 카테고리의 다른 글
spring boot HttpServletRequest 사용 쿠키 구현시 HttpSession.getAttribute(String) is null 에러 발생 대응 (1) | 2023.03.14 |
---|---|
현재 시간을 특정 포맷 yyyyMMdd HH:mm:ss 로 String 출력하기 (0) | 2022.09.14 |
실행 가능한 자바 jar 패키지 만들기(with gradle) (0) | 2021.05.25 |
Math함수를 이용하여 랜덤 숫자 추출하기 (0) | 2021.05.11 |
자바와 스칼라 차이점 (1) | 2020.12.10 |
인증서란? openJDK의 cacerts 설명 (0) | 2020.09.16 |