Help deciphering this Fatal Error (Java)

后端 未结 2 1936
别跟我提以往
别跟我提以往 2021-01-27 03:22

A fatal error has been detected by the Java Runtime Environment:

EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x762a76d0, pid=4072, tid=2984

 JRE version: 6.0_         


        
2条回答
  •  被撕碎了的回忆
    2021-01-27 03:43

    Line 3 says your program failed in the AWT-EventQueue-0 thread, also called the event dispatch thread (EDT). The execution stack trace starts in line 111, and builds up. At line 47, in the package sun.awt.windows and class WComponentPeer, the method addNativeDropTarget() attempted to call into the shared library, ole32.dll, failing at entry CoUnmarshalInterface. The rest describes the processor state at the time.

    This can happen if the shared library is not the one expected by the Java Runtime Environment (JRE). You may need to check your installation.

提交回复
热议问题