Java 내부화-로케일 특정 형식화 날짜
로케일은 SimpleDateFormat 클래스의 패턴에 대한 로케일 특정 형식을 작성하는 데 사용할 수 있습니다. 로케일 별 SimpleDateFormat 클래스를 사용하는 다음 예제를 참조하십시오.
IOTester.java
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Locale;
public class I18NTester {
public static void main(String[] args) throws ParseException {
Locale locale = new Locale("da", "DK");
String pattern = "EEEEE MMMMM yyyy";
SimpleDateFormat simpleDateFormat = new SimpleDateFormat(pattern);
Date date = new Date();
System.out.println(date);
System.out.println(simpleDateFormat.format(date));
simpleDateFormat = new SimpleDateFormat(pattern,locale);
System.out.println(simpleDateFormat.format(date));
}
}
산출
다음 결과를 인쇄합니다.
Wed Nov 29 17:48:14 IST 2017
Wednesday November 2017
onsdag november 2017
인쇄