00 - Eclipse教程
01 - Eclipse设置编译和运行的环境
建议编译和运行的版本保持一致,否则请特别注意:
- 低编译,高运行 ---》 可行。
- 高编译,低运行 ---》 不行。
- 编译环境:导航栏Window---》Preferences---》Java---》Compiler。
- 运行环境:导航栏Window---》Preferences---》Java---》Installed JREs。
02 - Eclipse设置Java智能提示
- 导航栏Window---》Preferences---》Java---》Editor---》Content Assist。
- 在右侧的"Auto-Activation"找到"Auto Activation triggers for java"选项。默认触发代码提示的是"."符号。
- 将"."符号更改为:".abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"。
- 默认开启“Auto activation delay(ms)”和“Auto activation triggers for javadoc”。
03 - 修改编码格式
- 修改默认编码
Java文件使用UTF-8编码能够最大程度的支持中文输出。
导航栏Window---》Preferences---》General---》Workspace:将Text file encoding
选择为Other:UTF-8
和New text file line delimiter
选择为Other:Unix
- 修改文件的编码
导航栏Window---》Preferences---》General---》Content Types,选择要修改的文件类型,在Default encoding
中输入UTF-8
,然后先后点击Update和OK按钮即可。
04 - 修改皮肤
- 方法一:导航栏Window---》Preferences---》Appearance,分别选择Theme和Color and Font theme,然后点击Appy和OK即可。
- 方法二:导航栏Help---》Eclipse Marketplace---》搜索theme,根据需要选择安装使用。
05 - Eclipse查看和设置快捷键
- 导航栏Window---》Preferences---》Java---》General---》Keys,可以看到当前设置的快捷键。
- 根据需要设置快捷键并应用。注意是否避免与其他程序的快捷键设置冲突。
06 - Eclipse修改字体大小
导航栏Window---》Preferences---》General---》Appearance---》Colors and Fonts---》Basic---》Aa Text Font,点击编辑并选择字体和大小,然后应用保存。
07 - Eclipse重置窗口布局
导航栏Window---》Perspective---》Reset Perspective。
08 - Eclipse恢复显示某个窗口
以恢复显示控制台窗口为例:导航栏Window---》Show View---》Console。
09 - Eclipse删除、导入和导出项目
可以选择不同的内容和方式来完成导入和导出项目,请根据需要选择。这里仅示例了General的两种方式。
- 删除项目:选中项目---》右键---》选择删除方式(从项目区域中删除、从硬盘上删除)
- 导入项目:导航栏File---》Import---》General---》Existing Projects into Workspace---》点击next---》选择要导入Eclipse项目的根目录。
- 导出项目:导航栏File---》Export---》General---》Archive File---》点击Next---》选择要导出的Eclipse项目---》点击Finish。
10 - Eclipse切换光标状态
- Eclipse的光标状态默认为插入模式,显示为“细竖杠”
- 点击Insert键,光标变为改写模式,显示为“小黑块”。
- 再次点击Insert键,光标恢复为插入模式。
11 - Eclipse批量修改变量名
选中要修改的变量名 ---》点击鼠标右键,选择"refactor"重构选项 ---》选择并点击"rename"重命名选项 ---》修改变量名 ---》点击"Enter"键生效。
12 - Eclipse自动调整格式
文件任意位置 ---》点击鼠标右键 ---》选择并点击“source” ---》选择并点击“format”,就可以自动调整格式。
13 - Eclipse升级
同一版本的Eclipse升级
菜单Help ---》Check for Updates ---》重启Eclipse
不同版本的Eclipse升级
- 菜单Window ---》Preferences窗口 ---》Install/Update ---》Available Software Sites
- 点击Add按钮,输入新版本仓库地址,例如“http://download.eclipse.org/releases/neon/”,
- 菜单Help ---》Check for Updates ---》重启Eclipse
14 - Eclipse下直接查看.class文件
方法一:
菜单栏window ---> Show View ---> Navigator ---> 在Navigator导航器栏目下选中.class文件,右击鼠标 ---> 选择"Class File Viewer"方式查看.class文件内容
方法二:
菜单栏Help ---> Eclipse Marketplace ---> 搜索jad,根据提示安装插件"Eclipse Class Decompiler" ---> 选择.class文件,右击鼠标 ---> 选择"Class Decompiler Viewer"方式,可以查看.class文件反编译之后的内容
15 - Eclipse设置提示
方法一:针对无任何提示的情况
- 导航栏Window---》Preferences---》Java---》Editor---》Content Assist---》Advanced。
- 在右侧的“select the proposal kinds contained in the 'default' content assist list”栏目下,根据需要勾选对应的“Java Prolosals”和“Template Proposals”。
方法二:针对缩写词汇无法提示的情况
- 导航栏Window---》Preferences---》Java---》Editor---》Content Assist。
- 在右侧的"Auto-Activation"找到"Auto Activation triggers for java"选项。默认触发代码提示的是"."符号。
- 将"."符号更改为:".abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"。
方法三:针对快捷键无法补全缩写词汇的情况
- 导航栏Window---》Preferences---》General---》Keys。
- 在右侧的“keys”的搜索框里面输入“Content Assist”,
- 选中显示出的“Content Assist”这一项,将下方显示信息中的When参数更改为“Editing Text”。
16 - Eclipse设置界面语言
Eclipse Babel Project
http://www.eclipse.org/babel/
http://www.eclipse.org/babel/downloads.php
Installing the language packs - Sample
- Open the install wizard with 'Help' > 'Install new software...'
- Add the Babel p2 repository: http://download.eclipse.org/technology/babel/update-site/R0.14.1/neon
- Select/install your language pack of choice
- Restart Eclipse and you should get a translated Eclipse
切换界面语言
以中文界面切换英文界面为例:关闭Eclipse,然后命令行进入Eclipse主目录后执行:eclipse –nl en
即可。
17 - Eclipse设置JDK和Jar包源码路径
- 导航栏Window---》Preferences---》Java---》Installed JREs---》选择对应的JRE目录并点击Edit
- 全选“JRE system libraries”下的所有Jar包,点击右侧的“Source Attachment”;
- 在“Source Attachment Configuration”窗口,选择“External location”,并在“Path”栏目选中JDK安装目录下的src.zip文件
18 - Eclipse关闭自动更新
导航栏Window---》Preferences---》Install/Update---》Automatic Updates,不勾选"Automatically find new updates and notify me"即可。
19 - Eclipse创建新Java文件时自动添加创建信息
Window--》Preferences--》Java--》Code Style--》Code Templates--》Code--》New Java files--》Edit
${filecomment}
${package_declaration}
/**
* @author : Anliven
* @version : 1.0.0
* Create Date : ${date} ${time}
* Description : sample
*/
${typecomment}
${type_declaration}
20 - Eclipse离线安装插件
- 下载相关插件的Eclipse压缩包;
- 打开Eclipse--》Help--》Install New Software--》点击Add并选择Archive,选择插件压缩包所在位置--》点击OK,勾选Name栏中的相应选项,根据提示安装并重启Eclipse;