1

这个简单的代码将Date字符串转换为我想要的格式。但是,在格式化日期时,会添加一个额外的日期。当 onChanged 事件在 SmartGWT 中的 RelativeDateItem 控件上触发时,解析完成。但是,我认为使用该组件不会影响日期解析。

private static String DATE_FORMAT = "dd.MMM.yyyy kk:mm";
...
private void changeDateFormat()
{      
     DateUtil.setShortDatetimeDisplayFormatter(new DateDisplayFormatter()
     {
        public String format(Date date)
        {
           System.out.println("setShortDatetimeDisplayFormatter = " + date.toString());
           if(date == null)
           {
              return null;
           }
           else
           {
              final DateTimeFormat dateFormatter = DateTimeFormat.getFormat(DATE_FORMAT);
              System.out.println("Formatted date = " + dateFormatter.format(date));
              return dateFormatter.format(date);
           }

        }
     });

     // It is a requirement that we implement a custom date parser or the onChanged event
     // will not fire.

     DateUtil.setDateParser(new DateParser()
     {
        public Date parse(String dateString)
        {           
           System.out.println("Entering parse = " + dateString);
           final DateTimeFormat format = DateTimeFormat.getFormat(DATE_FORMAT);

           System.out.println("Exiting parse = " + format.parse(dateString));
           return format.parse(dateString);

        }
     });
  }

调试:

setShortDatetimeDisplayFormatter = Tue Feb 19 00:00:00 EST 2013
Formatted date = 19.Feb.2013 24:00
Entering parse = 19.Feb.2013 24:00
Exiting parse = Wed Feb 20 00:00:00 EST 2013
Entering parse = 19.Feb.2013 24:00
Exiting parse = Wed Feb 20 00:00:00 EST 2013
setShortDatetimeDisplayFormatter = Wed Feb 20 00:00:00 EST 2013
Formatted date = 20.Feb.2013 24:00

它会触发两次,因为RelativeDateItem控件同时包含选取器文本和相邻的标签文本,因此必须对两者进行格式化。

4

2 回答 2

1

使用这种格式:

dd.MMM.yyyy HH:mm

看起来kk格式和解析是不对称的。我以前从未意识到这一点。

但是,Java 的日期处理不再让我感到惊讶了……

于 2013-02-25T13:12:25.683 回答
1

当 DateTimeForfat 解析字符串“19.Feb.2013 24:00”时,它会看到24:00 which is equivalent to 1 day 0 hours 0 minutes and 0 seconds.

因此,1 天被添加到日期,即 19 + 1 = 20。所以它显示日期为 2 月 20 日。

如果您输入字符串为“19.Feb.2013 23:59:59”,它只会给您 2 月 19 日。

于 2013-02-25T14:06:46.147 回答