from: http://www.metod.si/job-found-still-running-after-platform-shutdown-eclipse/
If your eclipse crashed and refuses to start, saying something along the lines of: Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown, then try the following.
-
$ rm -rf YOUR_PROJECT_DIR /.metadata /.plugins /org.eclipse.core.resources
Start eclipse. However, all your projects will be gone.
You can import them via File -> Import -> Existing Projects into Workspace; then select the directory where you had your projects.
EDIT: I just found a better way. (source)
-
$ rm YOUR_PROJECT_DIR /.metadata /.plugins /org.eclipse.core.resources /.snap
This way you do not need to reimport your projects.
ANOTHER WAY:
As IGx89 suggested in the comments, you can also try the following:
-
$ rm YOUR_PROJECT_DIR /.metadata /.plugins /org.eclipse.e4.workbench /workbench.xmi
http://stackoverflow.com/questions/11310970/eclipse-juno-doesnt-start/12045547#12045547
删除workbench.xmi works for me
本文提供了解决Eclipse启动失败的方法,当遇到“Job found still running after platform shutdown”错误时,可以通过删除特定文件来修复。提供了三种解决方案:清除资源插件缓存、删除.snap文件及移除workbench.xmi文件。
2534

被折叠的 条评论
为什么被折叠?



