區域設定可用於在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