Eclipse Indigo 将字体修改为以前的Courier New

在Eclipse Indigo版本中,默认字体是Consolas,字体看着很不雅观,打开preference-->Colors and Fonts发现没有Courier New这个字体,而之前的eclipse版本中的Courier New字体看着就很舒服。

打开c:/windows/fonts发现Courier New字体存在与操作系统中。 

修改方法: 

1. 找到eclipse目录,在目录中找出该压缩包:/plugins/org.eclipse.jface_3.7.0.I20110522-1430.jar 
2. 打开org\eclipse\jface\resource\jfacefonts_windows7.properties --根据所属的系统类型选择 
3. 找到如下两行: 
    org.eclipse.jface.textfont.0=Consolas-regular-10 
    org.eclipse.jface.textfont.1=Courier New-regular-10 
   将其修改为: 
   org.eclipse.jface.textfont.0=Courier New-regular-10 
   org.eclipse.jface.textfont.1=Consolas-regular-10 

4.保存文件(要先关闭Eclipse才能保存成功,因为Eclipse进程占用了该文件) 
5.重启Eclipse,打开preference-->Colors and Fonts,发现Courier New已经被设为默认字体

参考文档:http://b-l-east.iteye.com/blog/1194110

你可能感兴趣的:(eclipse)