我想在應用程序中提供TimeZone設置,所以我需要使用智能Gwt從瀏覽器中獲取時區。請告訴我獲取時區的方法。其實我已經寫Java代碼的智能GWT應用程序如下,SmartGwt中的TimeZone
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
我該如何解決這個問題?
感謝您的回答Mr Jean – user1438970