使用SimpleDateFormat的不同本地人的格式日期

时间:2013-11-13 08:41:51

标签: java date java.util.date

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

是否可以通过传递具有相同日期模式的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工厂方法。问题是我无法传递格式模式。它有一些预定义的日期格式(SHORT,MEDIUM等)

提前致谢...

2 个答案:

答案 0 :(得分: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

答案 1 :(得分:0)

尝试使用:

DateFormat.getDateInstance(int style, Locale locale)

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

  

使用给定模式和默认值构造SimpleDateFormat   给定语言环境的日期格式符号。注意:这个构造函数可以   不支持所有语言环境。要获得完整的覆盖率,请使用工厂方法   DateFormat类。