How to set SplashScreen in Eclipse?

∥☆過路亽.° 提交于 2019-12-01 04:57:59

This link explains best how to add your splashscreen with netbeans -

http://wiki.netbeans.org/Splash_Screen_Beginner_Tutorial.

For Eclipse just add the -splash:path/to/image to VM arguments in the Debug/Run configurations panel.

Yes, the splash screen image has to be named splash.bmp as described here: http://www.eclipse.org/articles/Article-Branding/branding-your-application.html. The splash screen is expected to be in the same plug-in as the product. If this is not true for you, you might want to make an explicit choice in the configuration.

Add the

-splash:path/to/image

to VM arguments in the Debug/Run configurations under Arguments tab.

Credits: http://www.mkyong.com/java/how-to-change-eclipse-splash-welcome-screen-image

Short version: replace eclipse-jee-neon-R-win32\plugins\org.eclipse.platform_4.6.3.v20170301-0400\splash.bmp (your path will be very similar, navigate to it manually).

Long version:

1) Find “config.ini” file

Find the Eclipse configuration file “config.ini” in the following location:

{eclipse.dir}\configuration\config.ini

2) Find “osgi.splashPath”

Open the “config.ini” file, find the “osgi.splashPath” to find out where Eclipse IDE's splash image is stored, e.g.:

osgi.splashPath=platform\:/base/plugins/org.eclipse.platform

The default splash image is stored in:

{eclipse.dir}/plugins/org.eclipse.platform folder

3) Find the “splash.bmp” image

Find the “splash.bmp” image in the following location:

{eclipse.dir}/plugins/org.eclipse.platform_3.3.200.v200906111540/splash.bmp

(3.3.200.v200906111540 is the Eclipse version in this case, it may be different than yours)

4) Replace it

Replace the default “splash.bmp” image with yours (you may want to keep a backup copy of the original).

5) Done

Restart your Eclipse IDE to see the result!

And now, for the real reason I wanted to post this answer:

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