- 浏览: 47862 次
- 性别:
- 来自: 北京
最新评论
-
wonderlandsh:
有64位的吗
发一个破解版exe4j -
sungine:
LZ 万福
发一个破解版exe4j
文章列表
将坐标图和饼状图中的中文乱码问题解决了,只要做如下配置:
/**
* 配置字体 解决导出图中的中文乱码问题
*
* @param chart
* JFreeChart 对象
*/
public static void configFont(JFreeChart chart) {
// 配置字体
Font font = new Font("宋体", Font.BOLD, 25);
chart.getTitle().setFont(font);
if (chart.getLegend() != null) {
chart.getLe ...