Java中的SimpleDateFormat和Locale API

时间:2013-10-28 14:32:00

标签: java locale simpledateformat

我有以下一段代码,我认为这些代码可以按照文档所承诺的那样工作,但它没有!

public static void main(String[] args) throws ParseException
{
    SimpleDateFormat fm = new SimpleDateFormat("yyyy/MMMM/dd",    // format str
                                               new Locale("gd",   // language = Scottish Gaelic
                                                          "UK",   // region   = UK
                                                          "scotland")); // variant = scotland
    fm.parse("2013/an Dàmhair/25");
}

执行此操作(当它放入具有适当导入/声明的类时)将产生以下错误。

Exception in thread "main" java.text.ParseException: Unparseable date: "2013/an Dàmhair/25"
    at java.text.DateFormat.parse(DateFormat.java:357)
    at Foo.main(Foo.java:15)

有人能告诉我这是不是一个错误(和/或不支持的功能)?

日期字符串显然是盖尔语中的有效日期字符串,并且还正确设置了变体/语言。 (否则,我希望得到IllegalArgument或类似的东西)。

任何建议如何解决它也将非常感激。

谢谢,

2 个答案:

答案 0 :(得分:2)

根据this list,不支持此区域设置。

答案 1 :(得分:1)

您可以定义自己的DateFormatSymbols

public static void main(String[] args) throws ParseException {
    DateFormatSymbols dateFormatSymbols = new DateFormatSymbols(new Locale("gd", "UK", "scotland"));
    // sorry I don't know the other months in Scottish Gaelic. Thus the numbers
    dateFormatSymbols.setMonths(new String[] { "1", "2", "3", "4", "5",
            "6", "7", "8", "9", "an Dàmhair", "11", "12" }); 

    SimpleDateFormat fm = new SimpleDateFormat("yyyy/MMMMM/dd", dateFormatSymbols); 
    System.out.println( fm.parse("2013/an Dàmhair/25"));
}

我希望这是一个解决方案