-
Bug
-
Resolution: Fixed
-
P2
-
1.2.0
-
1.2beta4
-
x86
-
generic
-
Verified
Using JDK1.2 Beta4-E on WIN32
the "toString()" throws an Exception
used the following to reproduce on a win95 PC.
import java.util.*;
public class DateBug {
public static void main (String args[]) {
Date time = new Date();
System.out.println(time.toString()) ;
}
}
Fails with:
Exception in thread "main" java.lang.NullPointerException
at java.text.DateFormatSymbols.initializeData(Compiled Code
at java.text.DateFormatSymbols.<init> (DateFormatSymbols.java:109)
at java.text.SimpleDateFormat.<init>(SimpleDateFormat.java:242)
at java.util.Date.toString(Date.java:936)
at DateBug.main(DateBug.java:8)
NOTE: The same example above works fine on the Solaris side.
NOTE2: This bug prevents JavaTest2.0 "jtreg" script from running
on the Windows platform, OK on Solaris.
the "toString()" throws an Exception
used the following to reproduce on a win95 PC.
import java.util.*;
public class DateBug {
public static void main (String args[]) {
Date time = new Date();
System.out.println(time.toString()) ;
}
}
Fails with:
Exception in thread "main" java.lang.NullPointerException
at java.text.DateFormatSymbols.initializeData(Compiled Code
at java.text.DateFormatSymbols.<init> (DateFormatSymbols.java:109)
at java.text.SimpleDateFormat.<init>(SimpleDateFormat.java:242)
at java.util.Date.toString(Date.java:936)
at DateBug.main(DateBug.java:8)
NOTE: The same example above works fine on the Solaris side.
NOTE2: This bug prevents JavaTest2.0 "jtreg" script from running
on the Windows platform, OK on Solaris.