首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > 编程 >

JFreeChart处置乱码

2012-11-03 
JFreeChart处理乱码JFreeChart中文乱码处理:在ChartFactory.create...Chart()前设置主题字体,代码如下:Sta

JFreeChart处理乱码
JFreeChart中文乱码处理:

在ChartFactory.create...Chart()前设置主题字体,代码如下:

StandardChartTheme standardChartTheme = new StandardChartTheme("JFree");  //或者为LegacystandardChartTheme.setLargeFont(new Font("宋体", Font.BOLD, 12));standardChartTheme.setRegularFont(new Font("宋体", Font.BOLD, 12));standardChartTheme.setExtraLargeFont(new Font("宋体", Font.BOLD, 12));standardChartTheme.setSmallFont(new Font("宋体", Font.BOLD, 12));ChartFactory.setChartTheme(standardChartTheme);

热点排行