首页 > 代码库 > jFreeChart中文显示成乱码
jFreeChart中文显示成乱码
jfreechart中文显示成方块
原来,从1.0.14开始,加了个 source\org\jfree\chart\StandardChartTheme.java
里边写死字体都用 Tahoma , 没找到这个字体, 生成的图中,中文就变成方块了。
解决办法:
要么在机器上安装Tahoma字体,要么修改代码,将字体该回去。
将 新采用的Tahoma字体改为原来的 SansSerif
第一处:
source\org\jfree\chart\StandardChartTheme.java
函数 public StandardChartTheme(String name, boolean shadow) { 中
将
this.extraLargeFont = new Font("Tahoma", Font.BOLD, 20);
this.largeFont = new Font("Tahoma", Font.BOLD, 14);
this.regularFont = new Font("Tahoma", Font.PLAIN, 12);
this.smallFont = new Font("Tahoma", Font.PLAIN, 10);
this.extraLargeFont = new Font("SansSerif", Font.BOLD, 20);
this.largeFont = new Font("SansSerif", Font.BOLD, 14);
this.regularFont = new Font("SansSerif", Font.PLAIN, 12);
this.smallFont = new Font("SansSerif", Font.PLAIN, 10);
this.extraLargeFont = new Font("Tahoma", Font.BOLD, 20);
this.largeFont = new Font("Tahoma", Font.BOLD, 14);
this.regularFont = new Font("Tahoma", Font.PLAIN, 12);
this.smallFont = new Font("Tahoma", Font.PLAIN, 10);
改为
this.largeFont = new Font("SansSerif", Font.BOLD, 14);
this.regularFont = new Font("SansSerif", Font.PLAIN, 12);
this.smallFont = new Font("SansSerif", Font.PLAIN, 10);
第二处:source\org\jfree\chart\plot\Crosshair.java 中也用到了Tahoma字体,最好改掉吧。
jFreeChart中文显示成乱码
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。