eclipse 卡死问题的解决

原链接 : https://www.cnblogs.com/yxmfighting/p/7476047.html

方法一(推荐使用,如果没有这个文件,就使用方案二):

      到\.metadata\.plugins\org.eclipse.core.resources目录,删除文件 .snap

方法二:

      进入workspace/.metadata/.plugins/目录
      重命名 org.eclipse.core.resources to org.eclipse.core.resources_old.
      然后重启 eclipse
      Close eclipse
      Delete org.eclipse.core.resources
      Rename org.eclipse.core.resources_old back to org.eclipse.core.resources
      启动 eclipse

本人使用第一个方法已解决;

有网友表示:org.eclipse.core.resources这个包是Eclipse在建立工程时候自动生成的,没有这些东西就不能在Eclipse里导入成工程org.eclipse.core.resources 提供了Eclipse的一些参考的东西

*.snap files represent the changes in workspace state of the IDE during the runtime. This is mostly for eclipse crash recovery plan. When a crash happens these files are used to recover the state fo eclipse workspace.
翻译:* SNAP文件表示运行时IDE中工作区状态的变化。这主要用于Eclipse崩溃恢复计划。当发生崩溃时,这些文件用于恢复Eclipse工作区的状态。

你可能感兴趣的:(ide)