-
Bug
-
Resolution: Duplicate
-
P2
-
None
-
1.1.3
-
None
-
generic
-
solaris_2.5
xiangyun.kong@Eng 1997-07-22
A friend of mine at Aimquest claims that the following simple Java program
will crash on Win95 with JDK1.1.3 installed, and colors set to 16 colors.
import java.awt.image.*;
import java.awt.*;
public class javabug{
public static void main(String args[]){
try{
System.err.println("00000000");
Toolkit tk=Toolkit.getDefaultToolkit();
System.err.println("11111");
ColorModel cm=tk.getColorModel();
System.err.println("2222222");
}catch(Exception e){
System.err.println("Exception: "+e);
}
}
}
- duplicates
-
JDK-4071991 JAVA EXE CRASHES when using Images on 16-color displays
-
- Closed
-