简体   繁体   中英

Help deciphering this Fatal Error (Java)

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_26-b03
 Java VM: Java HotSpot(TM) Client VM (20.1-b02 mixed mode, sharing windows-x86 )
 Problematic frame:
 C  [ole32.dll+0x376d0]

Error Log: http://pastebin.com/zpBst6W1

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.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM