GWT DateTimeFormat解析以提供DateBox

时间:2014-06-16 10:03:15

标签: java gwt

我需要解析日期,例如&#34; Wed Apr 30 00:00:00 CEST 2014&#34; &#34; dd / mm / yyyy&#34; < / strong>格式。

我已经找到了解决方案,但是需要java.text.DateFormat,我无法在GWT客户端使用它。我需要解析此日期以提供GWT DateBox。

任何人都有线索?

1 个答案:

答案 0 :(得分:3)

您可以改为使用DateTimeFormat

这应该这样做:

DateTimeFormat inputFormat = DateTimeFormat.getFormat("EEE MMM dd HH:mm:ss z yyyy");
DateTimeFormat outputFormat= DateTimeFormat.getFormat("dd/MM/yyyy");

outputFormat.format(inputFormat.parse("Wed Apr 30 00:00:00 CEST 2014"));