安装完 Eclipse / MyEclipse 之后的设置方法,更加便于编程。
新建文件的默认编码
(防止乱码)
MyEclipse
Windows → Preferences → MyEclipse → Files and Editors → JSP → Encoding
Eclipse
Windows → Preferences → Web → JSP Files → JSP → Creating files
请把 `ISO Latin-1` 更改为 `ISO 10646/UTF-8`
工作空间默认编码配置
(防止乱码)
Windows → Preferences → General → Workspace → Text file encoding
请把 `GBK` 更改为 `Other :UTF-8`
增强代码自动提示功能
Java 文件自动提示
Windows → Preferences → Java → Editor → Content Assist → Auto-Activation → Auto Activation triggers for Java
请把 `.` 更改为 `.abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ(,`
JavaScript 文件自动提示
Windows → Preferences → JavaScript → Editor → Content Assist → Auto-Activation → 勾选 Enable auto ativation
请把 `.` 更改为 `.abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ`
HTML 文件自动提示
Windows → Preferences → Web → HTML Files → Editor → Content Assist → Auto-Activation → Prompt when these characters are inserted
请把 `<=` 更改为 `<=abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ`
修改编程字体
新版本的 Eclipse EE 默认字体为 Consplas 10,可以设置为自己喜欢的字体字号。
Windows → Preferences → General → Appearance → Colors and Fonts → Basic → Text Font
更改配色方案
Windows → Preferences → Java → Editor → Syntax Coloring → Element → Java
已有项目编码更改
项目右键 → 属性 → 资源 → 文本文件编码
更改为 `Other : UTF-8`
配置文件导出及导入
某些原因需要重装Eclipse时,之前对Eclipse所做的配置全都没了,我们又要重新配置Eclipse。为了避免因重装Eclipse,导致我们又要重新配置Eclipse,我们就要将我们对Eclipse的配置进行导出并保存。
File → Export → General → Preferences → 选择导出路径
File → Import → General → Preferences → 选择导入路径
设置 VS2010 代码风格
把Java语言风格改变为C语言风格,Eclipse 设置代码格式化的快捷键是 CTRL+SHIFT+F。
Windows → Preferences → Java → Code Style → Formatter
右侧 'New' 按钮新建风格,在 'Brace positions' 中所有选项选择为 'Next line'
并 '√勾选 Keep empty array initializer on one line'x
网友评论