English 中文(简体)
写入核心倾弃失败。 默认情况下 Windows 客户端版本无法启用微型倾卸
原标题:Failed to write core dump. Minidumps are not enabled by default on client versions of Windows

I was working on Eclipse RCP and I got this error


Java 运行时环境检测到致命错误 :

Pc=0x000007f54b88ee,pid=3192,tid=5324时的(0xc000005)

JRE version: 7.0_02-b13 Java VM: Java HotSpot(TM) 64-Bit Server VM (22.0-b10 mixed mode windows-amd64 compressed oops) Problematic frame: C [jscript9.dll+0x888ee]

写入核心倾弃失败。 默认情况下 Windows 客户端版本无法启用微型倾卸

An error report file with more information is saved as: F:Eclipse RCPhs_err_pid3192.log

If you would like to submit a bug report, please visit: http://bugreport.sun.com/bugreport/crash.jsp The crash happened outside the Java Virtual Machine in native code. See problematic frame for where to report the bug.

问题回答

仅供参考,这很可能是由Windows UAC造成的,见java.com s description

您尚未接受任何答案, 造成此错误的可能原因之一是在某个类别不是默认活动的情况下, 将该类的构建器设为“ 坚固 > main < / 坚固” 类。 要解决问题, 需要 :

  1. Run configuration.
  2. in the tree of lunch configuration, remove that class from java application if listed. (but keep the android application listed in the tree of lunch applications)




相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...

热门标签