3

我看到这个问题在几个地方被问到,但给定的答案对我来说并不清楚。这就是为什么我再次问它的原因。

是否可以通过仅传递具有相同日期模式的 Locale 参数来获取 Locale 特定日期?例如我怎么能做这样的事情

String pattern = "dd/MM/yyyy";
Date d1 = new Date();
 SimpleDateFormat f1 =  new SimpleDateFormat( pattern , Locale.UK );
 f1.format(d1);
 // formatted date should be in  "dd/MM/yyyy" format

 SimpleDateFormat f2 =  new SimpleDateFormat( pattern , Locale.US );
 f2.format(d1);
 // formatted date should be in "MM/dd/yyyy" format

上面的代码没有给我预期的结果。有没有办法做这样的事情?

我尝试过使用 DateFormat 工厂方法。问题是我无法通过格式模式。它有一些预定义的日期格式(短、中等)

提前致谢...

4

2 回答 2

4

你可以试试这样的

@Test
public void formatDate() {
    Date today = new Date();
    SimpleDateFormat fourDigitsYearOnlyFormat = new SimpleDateFormat("yyyy");
    FieldPosition yearPosition = new FieldPosition(DateFormat.YEAR_FIELD);

    DateFormat dateInstanceUK = DateFormat.getDateInstance(DateFormat.SHORT, 
            Locale.UK);
    StringBuffer sbUK = new StringBuffer();

    dateInstanceUK.format(today, sbUK, yearPosition);

    sbUK.replace(yearPosition.getBeginIndex(), yearPosition.getEndIndex(), 
            fourDigitsYearOnlyFormat.format(today));
    System.out.println(sbUK.toString());

    DateFormat dateInstanceUS = DateFormat.getDateInstance(DateFormat.SHORT,
            Locale.US);
    StringBuffer sbUS = new StringBuffer();
    dateInstanceUS.format(today, sbUS, yearPosition);
    sbUS.replace(yearPosition.getBeginIndex(), yearPosition.getEndIndex(), 
            fourDigitsYearOnlyFormat.format(today));
    System.out.println(sbUS.toString());
}

它基本上使用DateFormat#SHORT样式格式化日期,并使用FieldPosition对象捕获年份的位置。之后,您将年份替换为其四位数格式。

输出是:

13/11/2013
11/13/2013

编辑

与任何图案一起使用

StringBuffer sb = new StringBuffer();
DateFormat dateInstance = new SimpleDateFormat("yy-MM-dd");
System.out.println(dateInstance.format(today));
dateInstance.format(today, sb, yearPosition);
sb.replace(yearPosition.getBeginIndex(), yearPosition.getEndIndex(), 
        fourDigitsYearOnlyFormat.format(today));
System.out.println(sb.toString());

输出是:

13-11-13
2013-11-13
于 2013-11-13T09:24:12.050 回答
0

尝试使用这个:

DateFormat.getDateInstance(int style, Locale locale)

SimpleDataFormat 的 java 文档说明了这一点:

使用给定模式和给定语言环境的默认日期格式符号构造SimpleDateFormat 。注意:此构造函数可能不支持所有语言环境。如需全面覆盖,请使用 DateFormat 类中的工厂方法。

于 2013-11-13T08:46:09.317 回答