如何在Java中格式化具有多个日期的String

时间:2013-04-05 16:34:02

标签: java localization date-formatting

我想格式化一个包含多个日期/时间模式的String。例如:

'Starting on' EEEE 'at' h:mm a 'and ending on' MMM d

这里我试图在相同的格式字符串,开始日期和结束日期中使用两个日期。我不想将它分成两个字符串,因为句子的顺序和结构在其他语言中可能不同,我不想在我的代码中加入任何假设。据我所知,使用SimpleDateFormat无法做到这一点,因为format()方法只接受一个日期对象。

2 个答案:

答案 0 :(得分:3)

您可以使用java.text.MessageFormat来提供所需的数据格式。

String result = MessageFormat.format(
     "At {1,time} on {1,date}, there was {2} on planet {0,number,integer}.",
     arguments);

答案 1 :(得分:1)

请参阅http://docs.oracle.com/javase/7/docs/api/java/util/Formatter.html#dt,例如:

    Date today = new Date();
    Date yesterday = new Date();
    yesterday.setTime(today.getTime() - (1000*60*60*24) );
    System.out.printf( "Yesterday was: %ta, today is: %ta%n ", yesterday, today );

输出

    Yesterday was: Thu, today is: Fri