如您所知,GWT不支持SimpleDateFormat。但是到目前为止,我找不到任何替代方法。

public Player(String name, int score, Date dateScore){
    this.name = name;
    this.score = score;
    this.dateScore = dateScore;
    if(dateScore != null){
        this.dateScoreFormatted = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(dateScore);
    }
}


here这个家伙说要导入com.google.gwt.i18n.client.DateTimeFormat,但是我不知道如何导入。 Libgdx可以在本机Android和桌面应用程序上使用吗?

最佳答案

GWT代码可编译为JavaScript。它将在所有受支持的浏览器(包括移动和桌面浏览器)中运行。

是的,您需要使用com.google.gwt.i18n.client.DateTimeFormat

08-04 20:36