Eclipse: How to disable welcome screen?

◇◆丶佛笑我妖孽 提交于 2019-12-19 12:23:55

问题


I get an annoying welcome screen whenever I start eclipse. How can I get it to skip the welcome and go straight to the workbench when I start it?


回答1:


For Eclipse Neon:

  1. Open Eclipse
  2. Uncheck the box in the bottom right hand corner (Show every time)
  3. Close the welcome screen

Edit: Still correct for Eclipse Oxygen, Photon and 2018-12




回答2:


The welcome screen is displayed whenever you first open eclipse with a new workspace. Once you close the welcome screen, this is noted in the workspace, and on a restart of eclipse with the same workspace, you will not see it again until you either use the menu Help/Welcome or switch to a new workspace.

Note that you may have to really close the Welcome screen via the 'x' in its title tab; not just hide or minimize it.




回答3:


Follow the following steps for Eclipse Neon:

  1. Go to Eclipse_Home\plugins
  2. Take backup of the below jars and remove them from the above path
    1. org.eclipse.ui.intro.quicklinks_.jar
    2. org.eclipse.ui.intro.universal_.jar
    3. org.eclipse.ui.intro_.jar
  3. Step 3: Restart Eclipse



回答4:


STEP 1: Go to the eclipse home folder -> Go to plugins folder.

STEP 2: Search for org.eclipse.ui.intro.universal and remove it from the folder.

STEP 3: Now try to startup your eclipse with the new workspace and you can see that the welcome screen will not show up anymore.




回答5:


  1. Run Eclipse Neon as an Administrator.
  2. When Eclipse starts up with the welcome screen, uncheck the bottom right hand corner box.
  3. Close the welcome screen from upper part with the 'x'.
  4. Close Eclipse Neon
  5. Reopen Eclipse. You will not see the welcome screen anymore. Worked for me!



回答6:


Another option is to create file in your workspace:

.metadata\.plugins\org.eclipse.ui.intro\introstate

and insert:

<?xml version="1.0" encoding="UTF-8"?>
<state reopen="false"/>



回答7:


1 ) Go to Help Menu
2 ) Click on "Welcome"
3 ) Uncheck the "Always show Welcome at start up" in "Welcome Page" Right bottom Corner




回答8:


By creating the following file in your empty workspace:

workspace/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui.prefs

and fill it in with:

eclipse.preferences.version=1
showIntro=false


来源:https://stackoverflow.com/questions/14637755/eclipse-how-to-disable-welcome-screen

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