I have a JSE 6 application that runs on an OS with a custom timezone.
TimeZone.getDefaultTimeZone()
returns 'GMT' as the timezone altough this is not correct.
Does java supports custom time zones?
Another problem is that the time zone configuration (daylight saving time transitions) could change while the application is running.
Will TimeZone.getDefaultTimeZone()
return the updated version of the timezone at every call?