Java - 현재 시간, 날짜를 원하는 형식으로 출력

SimpleDateFormat으로 현재 시간, 날짜를 원하는 형식으로 출력하는 방법을 알아보겠습니다. SimpleDateFormat는 Java8 이전 부터 날짜를 출력하는데 사용되었던 클래스입니다.

Java8에서는 SimpleDateFormat와 동일한 동작을 하는 DateTimeFormatter라는 새로운 클래스가 소개되었습니다.

여기서는 SimpleDateFormat으로 날짜를 출력하는 방법에 대해서 알아보겠습니다.

현재 날짜, 시간 출력

"yyyy-MM-dd"와 같은 패턴으로 SimpleDateFormat 객체를 생성할 수 있습니다. format()에 시간 객체를 전달해주면, 입력된 패턴으로 문자열을 생성하여 리턴해 줍니다.

String pattern = "yyyy-MM-dd";
SimpleDateFormat simpleDateFormat = new SimpleDateFormat(pattern);

String date = simpleDateFormat.format(new Date());
System.out.println(date);

결과

2020-04-11

StringBuffer로 날짜, 시간 출력

위의 예제에서 format()은 결과를 String 객체로 리턴하였습니다.

만약 StringBuffer로 리턴받고 싶다면, format()에 다음과 같이 StringBuffer 객체를 인자로 전달하면 됩니다.

StringBuffer stringBuffer = new StringBuffer();
Date now = new Date();

SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ssZ");
simpleDateFormat.format(now, stringBuffer, new FieldPosition(0));
System.out.println(stringBuffer);

결과

2020-04-11 22:40:37+0900

특정 Locale의 문자열로 출력

날짜를 출력할 때 원하는 언어로 문자열을 출력할 수도 있습니다.

SimpleDateFormat 객체를 생성할 때, 패턴과 함께 Locale객체를 전달하면 됩니다. 다음 코드를 실행해보면, 설정한 Locale에 맞는 언어로 날짜가 출력되는 것을 볼 수 있습니다.

String pattern = "EEEEE dd MMMMM yyyy HH:mm:ss.SSSZ";
SimpleDateFormat simpleDateFormat =
        new SimpleDateFormat(pattern, new Locale("ko", "KR"));
SimpleDateFormat simpleDateFormat2 =
        new SimpleDateFormat(pattern, new Locale("en", "US"));

String date = simpleDateFormat.format(new Date());
System.out.println(date);

date = simpleDateFormat2.format(new Date());
System.out.println(date);

결과

토요일 11 4월 2020 23:03:48.889+0900
Saturday 11 April 2020 23:03:48.889+0900

Locale을 생성할 때 Locale(language, country)처럼 언어 코드와 국가 코드를 순서대로 인자를 입력해야 합니다.

날짜 스트링 파싱

Date 객체를 문자열로 생성하지 않고, 반대로 문자열을 Date객체로 만들 수도 있습니다.

SimpleDateFormat 객체를 생성하고, 패턴과 동일한 문자열을 parse() 인자로 전달하면 Date 객체가 리턴됩니다.

String pattern = "yyyy-MM-dd";
SimpleDateFormat simpleDateFormat = new SimpleDateFormat(pattern);

Date date = simpleDateFormat.parse("2018-09-09");
System.out.println(date);

패턴 정보

패턴을 생성할 때 사용되는 알파벳의 의미는 다음과 같습니다.

Pattern
y Year
M Month in year
w Week in year
W Week in month
D The day count in year
d Day of the month
E Day name in the week
a AM or PM marker
H Hour in the day (0-23)
h Hour in am/pm for 12 hour format (1-12)
m Minute in the hour
s Second in the minute
z Timezone

다음은 흔히 사용되는 패턴 예제들입니다.

Pattern Result
MM/dd/yyyy 01/02/2018
dd-M-yyyy hh:mm:ss 02-1-2018 06:07:59
dd MMMM yyyy 02 January 2018
dd MMMM yyyy zzzz 02 January 2018 India Standard Time
E, dd MMM yyyy HH:mm:ss z Tue, 02 Jan 2018 18:07:59 IST

참고

Loading script...

Related Posts

codechachaCopyright ©2019 codechacha