我想在应用程序中提供时区设置,因此,我需要使用智能 Gwt 从浏览器中获取时区。请告诉我获取时区的方法。实际上我已经在 smart gwt 应用程序中编写了 java 编码,如下所示,
String timezones[]=java.util.TimeZone.getAvailableIDs();
for(int i=0;i<(timezones.length)-1;i++)
{
System.out.println(timezones[i]);
}
但它没有解决,它抛出一个异常如下:
[ERROR] [timezoneproject] Line 32: No source code is available for type java.util.TimeZone; did you forget to inherit a required module
[ERROR] [timezoneproject] Hint: Check the inheritance chain from your module; it may not be inheriting a required module or a module may not be adding its source path entries properly
我该如何解决这个问题?