当前位置: 代码迷 >> Eclipse >> Eclipse中按crtl键卡死后报Unhandled event loop exception Java heap space解决办法
  详细解决方案

Eclipse中按crtl键卡死后报Unhandled event loop exception Java heap space解决办法

热度:576   发布时间:2016-04-23 00:49:45.0
Eclipse中按crtl键卡死后报Unhandled event loop exception Java heap space解决方法
1.刚开始按Crtl键+C的时候MyEclipse不足老是报Unhandled event loop exception Java heap space,于是调大了eclipse.ini文件里中的内存-vmargs下
调整
-Xms256m
-Xmx512m
-XX:PermSize=128m
-XX:MaxPermSize=256m(这个确实可以解决Eclipse内存不足问题。。但是解决不了Crtl键卡死)
调整以后发现Crtl+C后还是会卡死。。慢慢发现因为eclipse中按住ctrl后可以用鼠标单击跳转到变量定义的地方,所以当按下ctrl键时eclipse会去生成这个映射,当文件比较大时,这个行为会花费比较多的时间,很容易卡死。修改
Eclipse -- Windows->Preferences->General->Editors->Text Editors->Hyperlinking:?
去掉这个选项:Enable on demand hyperlinks style navigation??(我保留前面带有java的,剩下的勾选全部划去了。。因为我是JSP页面Crtl键卡死)
好吧,重新Crtl+C试验一下后问题解决。。。
  相关解决方案