-
Enhancement
-
Resolution: Fixed
-
P3
-
1.1, 1.1.1, 1.1.3, 1.1.4, 1.1.5, 1.1.6, 1.2.0
-
1.2beta4
-
generic, other, x86, sparc
-
generic, solaris_2.5.1, solaris_2.6, windows_95, windows_nt
-
Verified
Steps to reproduce:
Compile and run the attached java code
import java.util.TimeZone;
public class tz {
static final int millisInHour = 3600000;
public static void main( String argv[] ) {
TimeZone tz1 = TimeZone.getTimeZone( "AST" );
if( tz1 == null ) {
System.out.println( "Time zone is null" );
}
else{
System.out.println( "Offset: " +
tz1.getRawOffset()/ (double)millisInHour );
System.out.println( "Should be -4" );
}
}
}
- duplicates
-
JDK-4133349 There are no TimeZone IDs for London or Paris (BST WET)
- Closed
-
JDK-4075987 `KST' should be included in the supported time zones
- Closed
-
JDK-4088590 Atlantic %s Time SimpleTimeZone Name wrong.
- Closed
-
JDK-4124203 TIME problems in UK: How do I get "British Summer Time"?
- Closed
-
JDK-4137881 Java does not handle BST
- Closed
-
JDK-4085909 No DST for UK time zone
- Closed
-
JDK-4034493 java.util.TimeZone's documentation for timezone ids inadequate
- Closed
- relates to
-
JDK-4112188 Long time zone names in 1.1.6 represent a breaking api change.
- Closed