
IntlDateFormatter::getTimeZone() 메소드는 IntlDateFormatter 객체의 시간대 정보를 반환합니다. 반환되는 시간대 정보는 시간대 이름으로 문자열로 반환됩니다.
IntlDateFormatter 객체를 생성할 때, 시간대 정보를 얻을 수 있는 방법은 다음과 같습니다.
#hostingforum.kr
java
IntlDateFormatter formatter = new IntlDateFormatter("en_US", IntlDateFormatter.LONG, IntlDateFormatter.LONG);
String timeZone = formatter.getTimeZone();
IntlDateFormatter::getTimeZone() 메소드는 시간대 이름을 반환하므로, 이 이름을 사용하여 시간대 정보를 얻을 수 있습니다. 예를 들어, "America/New_York"라는 시간대 이름을 사용하여 시간대 정보를 얻을 수 있습니다.
IntlDateFormatter::getTimeZone() 메소드를 사용하여 시간대 정보를 얻는 예제는 다음과 같습니다.
#hostingforum.kr
java
public class Main {
public static void main(String[] args) {
IntlDateFormatter formatter = new IntlDateFormatter("en_US", IntlDateFormatter.LONG, IntlDateFormatter.LONG);
String timeZone = formatter.getTimeZone();
System.out.println("시간대 이름: " + timeZone);
}
}
이 예제에서는 IntlDateFormatter 객체를 생성하고 getTimeZone() 메소드를 호출하여 시간대 이름을 얻습니다. 얻은 시간대 이름을 콘솔에 출력합니다.
2025-04-02 23:11