我希望在面向用户的消息中包含超时持续时间,例如“25秒”或“1分钟”。有没有办法在gwt中做到这一点?
从this resource开始,我知道我可以做这样的约会:
@DefaultMessage("Last update: {0,date,medium} {0,time,medium}")
String lastUpdate(Date timestamp);
但似乎没有像:
// hypothetical
@DefaultMessage("Requests time out after {0,duration}")
String timeout(Interval duration); // also Interval is a JodaTime concept...
有吗?
答案 0 :(得分:1)
JodaTime仍然不适用于GWT(有several projects,但不幸的是没有真正建立自己)。我希望有一天我们会在GWT中看到JavaSE 8的新Date API!
在此之前,我会使用以下方法: