J2SE Version (please include all output from java -version flag): 6u2 build06 and 6u1 build06 Operating System Configuration Information (be specific): Only with Windows 2003 , works fine with winXP. Bug Description: When use Desktop.open to display files with the linked application. On Windows 2003, JavaVM crashes after executing the test program. Error log files attached. Test programs: import java.io.File; public class TestDesktopOpen { public TestDesktopOpen() { File file = new File( "C:/test.pdf" ); try { java.awt.Desktop.getDesktop().open(file); } catch( Throwable t ) { t.printStackTrace(); } } public static void main(String [] args ) throws Exception { new TestDesktopOpen(); } }
|