public class Main {
public static void main(String[] args) throws Exception {
DateFormat dateFormat = new SimpleDateFormat("yyyyMMdd HH:mm:ss");
String dateTime = dateFormat.format(new Date());
System.out.println(dateTime);
}
}
현재 시간을 특정 포맷 yyyyMMdd HH:mm:ss 로 String 출력하기
아래는 출력물
20220914 00:19:07
반응형
'Programming Language > Java & Scala' 카테고리의 다른 글
scala에러 Unable to make private java.nio.DirectByteBuffer 해결 방법 (0) | 2024.06.03 |
---|---|
spring boot HttpServletRequest 사용 쿠키 구현시 HttpSession.getAttribute(String) is null 에러 발생 대응 (1) | 2023.03.14 |
실행 가능한 자바 jar 패키지 만들기(with gradle) (0) | 2021.05.25 |
현재 Unixtime 가져오기 in 자바 (0) | 2021.05.11 |
Math함수를 이용하여 랜덤 숫자 추출하기 (0) | 2021.05.11 |
자바와 스칼라 차이점 (1) | 2020.12.10 |