使用 Eclipse 开发,字符集和tab键是空格等问题经常困扰开发中,特别是在 windows 和 linux切换时,进程会因为文件格式导致问题,如文件bom格式。本文中重点介绍eclipse调优和pydev设置。
Eclipse 更改默认字符集 设置UTF-8 Unix
-
打开选项:General -> windows -> Preferences;
-
然后,Workspace,右 侧Text file encoding,选择Other,改变为UTF-8
Eclipse 设置软tab
用4个空格字符代替
-
打开选项:General -> Editors -> Text Editors
-
在右侧找到Displayed tab width: 把下面的“Insert spaces for tabs”勾选上。
针对java文件配置softtab
- 打开选项:General -> Editors -> Java -> Code Style -> Formatter,然后点击Active profile中的Edit按钮,如下图:
在弹出的窗口中,选择General settings中的Tab policy为Spaces only,修改Profile name然后保存即可
Eclipse pydev 配置
在部署使用eclipse 配置Python开发环境是,时长遇到eclipse版本与pydev不一致的问题,本文章主要介绍他们之间的对应关系。
Need to use older Eclipse/Java
If you need to use an older version of Eclipse/Java, below is the latest PyDev version to be used based on your requisites.
Eclipse 4.5, Java 8: PyDev 5.2.0
Eclipse 3.8, Java 7: PyDev 4.5.5
Eclipse 3.x, Java 6: PyDev 2.8.2
ref
http://www.pydev.org/download.html