본문 바로가기

Programming Language/Java & Scala

현재 시간을 특정 포맷 yyyyMMdd HH:mm:ss 로 String 출력하기

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
반응형