当前位置: 代码迷 >> Eclipse >> Eclipse Indigo 中文字体偏小的完善解决
  详细解决方案

Eclipse Indigo 中文字体偏小的完善解决

热度:31   发布时间:2016-04-23 01:44:32.0
Eclipse Indigo 中文字体偏小的完美解决
Eclipse Indigo 的默认编辑字体为Consolas ,该字体在Eclipse里显示的中文非常小,很不美观,因此参考网上一些朋友的文章做了如下修改

1、下载微软雅黑与Consolas 的混合字体,既解决中文字体小的问题,同时保持了Consolas字体的优雅美观
2、进行替换
   a. 打开eclipse目录/plugins/org.eclipse.jface_3.7.0.v20110928-1505jar (jar名会随Eclipse的版本号不同而有所变化)
   b. 打开org\eclipse\jface\resource\jfacefonts_windows7.properties --不同系统选择不同的文件
   c. 修改如下两行:
      org.eclipse.jface.textfont.0=Consolas-regular-10
      org.eclipse.jface.textfont.1=Courier New-regular-10
      为
      org.eclipse.jface.textfont.0=YaHei Consolas Hybrid-regular-10
      org.eclipse.jface.textfont.1=Courier New-regular-10
  相关解决方案