博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
windows系统下Eclipse启动界面更改
阅读量:6215 次
发布时间:2019-06-21

本文共 1618 字,大约阅读时间需要 5 分钟。

  前段日子看到有人修改了linux系统下Eclipse的启动界面,因此自己试着修改了一下windows平台的启动界面。本文总结一下修改Eclipse 4.5(代号Mars)启动界面的方法。

  方法一:修改splash.bmp启动图

  Eclipse启动画面实际就是eclipse\plugins\org.eclipse.platform_4.5.1.v20150904-0015目录下的splash.bmp图片。将其修改或替换成自定义图片,名字仍然保存成splash.bmp。

  方法二:修改eclipse.ini配置文件

eclipse配置文件eclipse.ini保存位置

1 原始eclipse.ini配置文件 2 -startup 3 plugins/org.eclipse.equinox.launcher_1.3.100.v20150511-1540.jar 4 --launcher.library 5 plugins/org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.300.v20150602-1417 6 -product 7 org.eclipse.epp.package.java.product 8 --launcher.defaultAction 9 openFile10 --launcher.XXMaxPermSize11 256M12 -showsplash           13 org.eclipse.platform  14 --launcher.XXMaxPermSize15 256m16 --launcher.defaultAction17 openFile18 --launcher.appendVmargs19 -vmargs20 -Dosgi.requiredJavaVersion=1.721 -Xms256m22 -Xmx1024m

  将org.eclipse.platform注释掉,改成自定义splash.bmp的绝对路径或相对eclipse.ini文件的相对路径。如相对路径为"./splash.bmp"等。

1 修改后eclipse.ini配置文件 2 -startup 3 plugins/org.eclipse.equinox.launcher_1.3.100.v20150511-1540.jar 4 --launcher.library 5 plugins/org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.300.v20150602-1417 6 -product 7 org.eclipse.epp.package.java.product 8 --launcher.defaultAction 9 openFile10 --launcher.XXMaxPermSize11 256M12 -showsplash13 #org.eclipse.platform14 ./splash.bmp  # 在eclipse.ini同文件下创建splash.bmp15 --launcher.XXMaxPermSize16 256m17 --launcher.defaultAction18 openFile19 --launcher.appendVmargs20 -vmargs21 -Dosgi.requiredJavaVersion=1.722 -Xms256m23 -Xmx1024m

  通过上述两种方法,我成功将Eclipse Mars启动界面修改。关于eclipse.ini配置文件的详细内容,可以参考eclipse官方说明  

 

转载于:https://www.cnblogs.com/forget406/p/5472418.html

你可能感兴趣的文章
秒杀系统架构优化思路
查看>>
delphi7 编译出现 internal error: T2335解决办法
查看>>
Keepalived+Lvs_DR模式实现Web服务的HA高可用集群
查看>>
PHPer 为什么会被 Javaer 鄙视?
查看>>
使用toFixed()函数时,出现“toFixed() is not a function”的解决办法
查看>>
页面布局设计
查看>>
计划任务crontab
查看>>
11月份个人技术指标
查看>>
LCM通信模块简介
查看>>
xpath之starts-with()
查看>>
CentOS 7 yum安装配置mysql
查看>>
前端协作流程
查看>>
MySQL5.7 用户权限配置
查看>>
NoSQL介绍(一)
查看>>
批量远程执行命令
查看>>
WiFi***进阶版——Deauth***
查看>>
【小松教你手游开发】【unity实用技能】unity所有特殊文件夹的用途(转自雨松momo)...
查看>>
Docker资源
查看>>
FMDB 架构图 与 常见sql语句
查看>>
Linux进程管理与计划任务
查看>>