Help deciphering this Fatal Error (Java)

江枫思渺然 提交于 2019-12-20 05:22:47

问题


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


回答1:


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.




回答2:


This is a known bug in Java 6 that is still open:

http://bugs.java.com/bugdatabase/view_bug.do;jsessionid=e5f1f1011daf96ffffffffdd154dd2e731150?bug_id=6967456

https://bugs.openjdk.java.net/browse/JDK-6967456?page=com.atlassian.jira.plugin.system.issuetabpanels:changehistory-tabpanel



来源:https://stackoverflow.com/questions/6671689/help-deciphering-this-fatal-error-java

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!