我试图制作一个 GWT 应用程序。然后在客户端和共享端使用 SimpleDateFormat 类时出现一些错误。
[ERROR] [gwtfirst] Line 381: No source code is available for type java.text.SimpleDateFormat; did you forget to inherit a required module?
以下是我在客户端的代码:
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
Window.alert(sdf.format(usersList.get(30).getCreatedate()));
但是我可以在服务器端使用 SimpleDateFormat ...我想知道我是否不能在客户端或共享端使用 SimpleDateFormat?