由于JFreeChart组件的版本、操作平台、JDK的设置等因素,在使用JFreeChart组件时可能会出现中文乱码的现象。遇到此问题时,可通过设置文字的字体来解决问题。在此提供以下两种解决此问题的方法。
一、设置主题的样式(强烈推荐)
在制图前,创建主题样式并制定样式中的字体,通过ChartFactory的setChartTheme()方法设置主题样式。
-
-
StandardChartTheme standardChartTheme=new StandardChartTheme("CN");
-
-
standardChartTheme.setExtraLargeFont(new Font("隶书",Font.BOLD,20));
-
-
standardChartTheme.setRegularFont(new Font("宋书",Font.PLAIN,15));
-
-
standardChartTheme.setLargeFont(new Font("宋书",Font.PLAIN,15));
-
- ChartFactory.setChartTheme(standardChartTheme);
例如:
- package com.zzs.jfreechart.demo;
-
-
import java.awt.Font;
-
import org.jfree.chart.ChartFactory;
-
import org.jfree.chart.ChartFrame;
-
import org.jfree.chart.JFreeChart;
-
import org.jfree.chart.StandardChartTheme;
-
import org.jfree.chart.plot.PlotOrientation;
-
import org.jfree.chart.title.LegendTitle;
-
import org.jfree.chart.title.TextTitle;
-
import org.jfree.data.category.DefaultCategoryDataset;
-
-
public class JfreeChartTest {
-
-
public static void main(String[] args) {
-
-
-
-
DefaultCategoryDataset dataset = new DefaultCategoryDataset();
-
-
dataset.addValue(100, "北京", "苹果");
-
-
dataset.addValue(100, "上海", "苹果");
-
-
dataset.addValue(100, "广州", "苹果");
-
-
dataset.addValue(200, "北京", "梨子");
-
-
dataset.addValue(200, "上海", "梨子");
-
-
dataset.addValue(200, "广州", "梨子");
-
-
dataset.addValue(300, "北京", "葡萄");
-
-
dataset.addValue(300, "上海", "葡萄");
-
-
dataset.addValue(300, "广州", "葡萄");
-
-
dataset.addValue(400, "北京", "香蕉");
-
-
dataset.addValue(400, "上海", "香蕉");
-
-
dataset.addValue(400, "广州", "香蕉");
-
-
dataset.addValue(500, "北京", "荔枝");
-
-
dataset.addValue(500, "上海", "荔枝");
-
-
dataset.addValue(500, "广州", "荔枝");
-
-
StandardChartTheme standardChartTheme=new StandardChartTheme("CN");
-
-
standardChartTheme.setExtraLargeFont(new Font("隶书",Font.BOLD,20));
-
-
standardChartTheme.setRegularFont(new Font("宋书",Font.PLAIN,15));
-
-
standardChartTheme.setLargeFont(new Font("宋书",Font.PLAIN,15));
-
- ChartFactory.setChartTheme(standardChartTheme);
-
JFreeChart chart=ChartFactory.createBarChart3D("水果产量图", "水果", "水果", dataset, PlotOrientation.VERTICAL, true, true, true);
-
-
-
-
-
-
-
ChartFrame frame=new ChartFrame ("水果产量图 ",chart,true);
- frame.pack();
-
frame.setVisible(true);
- }
- }
二、制定乱码文字的字体
使用JFreeChart绘制图表的时候,如果使用默认的字体会导致图标中的汉字显示为乱码。解决方法如下:
JFreeChart是用户使用该库提供的各类图标的统一接口,JFreeChart主要由三个部分构成:title(标题),legend(图释),plot(图表主体)。三个部分设置字体的方法分别如下:
1.Title
- TextTitle textTitle = freeChart.getTitle();
-
textTitle.setFont(new Font("宋体",Font.BOLD,20));
2.Legent
- LegendTitle legend = freeChart.getLegend();
-
if (legend!=null) {
-
legend.setItemFont(new Font("宋体", Font.BOLD, 20));
- }
3.Plot
对于不同类型的图表对应Plot的不同的实现类,设置字体的方法也不完全相同。
对于使用CategoryPlot的图表(如柱状图):
- CategoryPlot plot = (CategoryPlot)freeChart.getPlot();
-
CategoryAxis domainAxis = plot.getDomainAxis();
-
domainAxis.setTickLabelFont(new Font("宋体",Font.BOLD,20));
-
domainAxis.setLabelFont(new Font("宋体",Font.BOLD,20));
-
ValueAxis valueAxis = plot.getRangeAxis();
-
valueAxis.setTickLabelFont(new Font("宋体",Font.BOLD,20));
-
valueAxis.setLabelFont(new Font("宋体",Font.BOLD,20));
- CategoryPlot plot = (CategoryPlot)freeChart.getPlot();
-
CategoryAxis domainAxis = plot.getDomainAxis();
-
domainAxis.setTickLabelFont(new Font("宋体",Font.BOLD,20));
-
domainAxis.setLabelFont(new Font("宋体",Font.BOLD,20));
-
ValueAxis valueAxis = plot.getRangeAxis();
-
valueAxis.setTickLabelFont(new Font("宋体",Font.BOLD,20));
-
valueAxis.setLabelFont(new Font("宋体",Font.BOLD,20));
对于使用PiePlot的图标(如饼状图):
- PiePlot plot = (PiePlot)freeChart.getPlot();
-
plot.setLabelFont(new Font("宋体",Font.BOLD,15));
对于使用PiePlot的图标(如饼状图):
- PiePlot plot = (PiePlot)freeChart.getPlot();
-
plot.setLabelFont(new Font("宋体",Font.BOLD,15));
下面一个实例:
- package com.zzs.jfreechart.demo;
-
-
import java.awt.Font;
-
import javax.swing.JPanel;
-
import org.jfree.chart.ChartFactory;
-
import org.jfree.chart.ChartPanel;
-
import org.jfree.chart.JFreeChart;
-
import org.jfree.chart.plot.PiePlot;
-
import org.jfree.chart.title.LegendTitle;
-
import org.jfree.chart.title.TextTitle;
-
import org.jfree.data.general.DefaultPieDataset;
-
import org.jfree.data.general.PieDataset;
-
import org.jfree.ui.ApplicationFrame;
-
public class JfreeChartOne extends ApplicationFrame {
-
private static final long serialVersionUID = 1L;
-
public JfreeChartOne(String s)
- {
-
super(s);
- setContentPane(createJPanel());
- }
-
public static void main(String[] args) {
-
JfreeChartOne one = new JfreeChartOne("CityInfoPort公司组织架构图");
- one.pack();
-
one.setVisible(true);
- }
-
-
public static PieDataset createPieDataset() {
-
DefaultPieDataset defaultpiedataset = new DefaultPieDataset();
-
defaultpiedataset.setValue("管理人员", 10.02D);
-
defaultpiedataset.setValue("市场人员", 20.23D);
-
defaultpiedataset.setValue("开发人员", 60.02D);
-
defaultpiedataset.setValue("OEM人员", 10.02D);
-
defaultpiedataset.setValue("其他人员", 5.11D);
-
return defaultpiedataset;
- }
-
-
public static JFreeChart createJFreeChart(PieDataset p)
- {
-
JFreeChart a = ChartFactory.createPieChart("CityInfoPort公司组织架构图", p,
-
true, true, true);
-
-
- TextTitle textTitle = a.getTitle();
-
textTitle.setFont(new Font("宋体", Font.BOLD, 20));
- LegendTitle legend = a.getLegend();
-
if (legend != null) {
-
legend.setItemFont(new Font("宋体", Font.BOLD, 20));
- }
- PiePlot pie = (PiePlot) a.getPlot();
-
pie.setLabelFont(new Font("宋体", Font.BOLD, 12));
-
pie.setNoDataMessage("No data available");
-
pie.setCircular(true);
-
pie.setLabelGap(0.01D);
-
return a;
- }
-
public static JPanel createJPanel() {
- JFreeChart jfreechart = createJFreeChart(createPieDataset());
-
return new ChartPanel(jfreechart);
- }
- }
下面这个修改坐标轴:
- package com.zzs.jfreechart.demo;
-
-
import java.awt.Color;
-
import java.awt.Font;
-
import org.jfree.chart.ChartFactory;
-
import org.jfree.chart.ChartFrame;
-
import org.jfree.chart.JFreeChart;
-
import org.jfree.chart.axis.CategoryAxis;
-
import org.jfree.chart.axis.ValueAxis;
-
import org.jfree.chart.plot.XYPlot;
-
import org.jfree.chart.title.LegendTitle;
-
import org.jfree.chart.title.TextTitle;
-
import org.jfree.data.time.Month;
-
import org.jfree.data.time.TimeSeries;
-
import org.jfree.data.time.TimeSeriesCollection;
-
import org.jfree.ui.RectangleInsets;
-
public class ShiJianXuLieTu01 {
-
-
-
-
-
public static void main(String[] args) {
-
-
-
TimeSeries timeseries = new TimeSeries("L&G European Index Trust",Month.class);
-
timeseries.add(new Month(2, 2001), 181.8D);
-
timeseries.add(new Month(3, 2001), 167.3D);
-
timeseries.add(new Month(4, 2001), 153.8D);
-
timeseries.add(new Month(5, 2001), 167.6D);
-
timeseries.add(new Month(6, 2001), 158.8D);
-
timeseries.add(new Month(7, 2001), 148.3D);
-
timeseries.add(new Month(8, 2001), 153.9D);
-
timeseries.add(new Month(9, 2001), 142.7D);
-
timeseries.add(new Month(10, 2001), 123.2D);
-
timeseries.add(new Month(11, 2001), 131.8D);
-
timeseries.add(new Month(12, 2001), 139.6D);
-
timeseries.add(new Month(1, 2002), 142.9D);
-
timeseries.add(new Month(2, 2002), 138.7D);
-
timeseries.add(new Month(3, 2002), 137.3D);
-
timeseries.add(new Month(4, 2002), 143.9D);
-
timeseries.add(new Month(5, 2002), 139.8D);
-
timeseries.add(new Month(6, 2002), 137D);
-
timeseries.add(new Month(7, 2002), 132.8D);
-
TimeSeries timeseries1 = new TimeSeries("L&G UK Index Trust曾召帅",Month.class);
-
-
timeseries1.add(new Month(2, 2001), 129.6D);
-
timeseries1.add(new Month(3, 2001), 123.2D);
-
timeseries1.add(new Month(4, 2001), 117.2D);
-
timeseries1.add(new Month(5, 2001), 124.1D);
-
timeseries1.add(new Month(6, 2001), 122.6D);
-
timeseries1.add(new Month(7, 2001), 119.2D);
-
timeseries1.add(new Month(8, 2001), 116.5D);
-
timeseries1.add(new Month(9, 2001), 112.7D);
-
timeseries1.add(new Month(10, 2001), 101.5D);
-
timeseries1.add(new Month(11, 2001), 106.1D);
-
timeseries1.add(new Month(12, 2001), 110.3D);
-
timeseries1.add(new Month(1, 2002), 111.7D);
-
timeseries1.add(new Month(2, 2002), 111D);
-
timeseries1.add(new Month(3, 2002), 109.6D);
-
timeseries1.add(new Month(4, 2002), 113.2D);
-
timeseries1.add(new Month(5, 2002), 111.6D);
-
timeseries1.add(new Month(6, 2002), 108.8D);
-
timeseries1.add(new Month(7, 2002), 101.6D);
-
TimeSeriesCollection timeseriescollection = new TimeSeriesCollection();
-
- timeseriescollection.addSeries(timeseries);
- timeseriescollection.addSeries(timeseries1);
-
timeseriescollection.setDomainIsPointsInTime(true);
-
JFreeChart jfreechart = ChartFactory.createTimeSeriesChart("合法 & General Unit Trust Prices",
-
"日期",
-
"暗示的话发神经提防",
- timeseriescollection,
-
true,
-
true,
-
false);
- jfreechart.setBackgroundPaint(Color.white);
- TextTitle textTitle = jfreechart.getTitle();
-
textTitle.setFont(new Font("宋体", Font.BOLD, 20));
- LegendTitle legend = jfreechart.getLegend();
-
if (legend != null) {
-
legend.setItemFont(new Font("宋体", Font.BOLD, 20));
- }
-
XYPlot xyplot = (XYPlot)jfreechart.getPlot();
- ValueAxis domainAxis=xyplot.getDomainAxis();
-
domainAxis.setTickLabelFont(new Font("宋体",Font.BOLD,20));
-
domainAxis.setLabelFont(new Font("宋体",Font.BOLD,20));
- ValueAxis rangeAxis=xyplot.getRangeAxis();
-
rangeAxis.setTickLabelFont(new Font("宋体",Font.BOLD,20));
-
rangeAxis.setLabelFont(new Font("宋体",Font.BOLD,20));
- xyplot.setBackgroundPaint(Color.lightGray);
- xyplot.setDomainGridlinePaint(Color.white);
- xyplot.setRangeGridlinePaint(Color.white);
-
xyplot.setAxisOffset(new RectangleInsets(5D, 5D, 5D, 5D));
-
xyplot.setDomainCrosshairVisible(true);
-
xyplot.setRangeCrosshairVisible(true);
-
ChartFrame frame=new ChartFrame ("折线图 ",jfreechart,true);
- frame.pack();
-
frame.setVisible(true);
- }
- }
原文链接:http://zengzhaoshuai.iteye.com/blog/1000378
相关推荐
下面将详细阐述如何解决JFreeChart中文乱码问题,并提供不同图表类型的具体配置示例。 1. **柱状图(CategoryPlot)**:在柱状图中,我们需要设置`CategoryPlot`的`domainAxis`和`rangeAxis`的字体,以及图例的字体。...
通过以上步骤,你应该能够在Linux环境中成功解决JFreeChart的中文乱码问题。记住,关键在于正确配置字体和确保Java能够找到并使用这些字体。在实际开发过程中,根据具体环境和需求,可能需要进行一些额外的调整。
JFreeChart是一个强大的Java库,它提供了一套完整的解决方案来创建各种图表,如饼图、柱状图、线图等。然而,由于编码问题,当图表中包含中文字符时,可能会显示为方框或无法识别的字符。解决这个问题需要对Java的...
因此,针对JFreeChart中的中文乱码问题,本文将汇总并整理一系列有效的解决方案。 #### JFreeChart简介 JFreeChart是一款开源Java图表库,它提供了丰富的API来创建高质量的图表。JFreeChart支持多种类型的图表,...
本文将深入探讨如何解决JFreeChart中的中文乱码问题,并通过具体的代码示例来演示解决方案。 #### 一、问题背景 JFreeChart是一款开源的Java图表库,它能够生成各种类型的图表,如折线图、柱状图、饼图等。但在...
通过以上步骤,你应该能够成功解决JFreeChart在Linux服务器上生成图片时的中文乱码问题。值得注意的是,这种方法不仅适用于JFreeChart,还适用于其他依赖于Java运行环境显示中文字符的程序。在实际操作中,应根据...
**解决方案** 1. **检查Java版本**:确认Java版本与JFreechart兼容,并更新到最新稳定版本。 2. **更新图形库**:如果必要,安装或更新系统的AWT和Swing库。 3. **修复环境变量**:确保`JAVA_HOME` 和 `PATH` ...
标题 "jfreechart部署在Linux服务器上生成图片乱码的解决方案" 涉及到的主要知识点是关于Java图形库JFreeChart在Linux环境中的使用,特别是解决中文字符乱码的问题。JFreeChart是一个广泛使用的开源Java库,它允许...
JFreeChart是一款强大的Java图表库,它允许开发者创建多种类型的2D和3D图表,如柱状图、折线图和...在你的项目中,可以参考提供的文件“jfreechart”来查看具体的实现方式,这将有助于你更好地理解和应用这些解决方案。
Linux系统中文乱码解决完整方案 本文档旨在解决 Linux 系统中文乱码问题,提供了一个完整的解决方案。该问题是由于 Linux 和 Windows 系统下所用户的字符集不同,Linux 系统使用的是 Unicode 字符集,而 Windows ...
本文将详细探讨这个问题及其解决方案,主要围绕“zysong.ttf”字体库在解决JFreeChart在Linux系统下的中文显示问题。 首先,我们需要理解JFreeChart是什么。JFreeChart是一个用Java编写的开源图表库,它提供了一套...
JFreeChart是一款强大的Java图表库,它允许开发者创建多种类型的图表,...如果你遇到的特定问题仍未解决,可以搜索相关的解决方案,或者参考社区中的帖子,如文中提到的博客文章,那里通常会汇总各种场景下的解决方案。
### jfreechart乱码问题详解 #### 一、问题背景 在使用jFreeChart进行图表绘制时,可能会遇到中文乱码的问题。这个问题主要是由于jFreeChart默认使用的字体不支持中文字符,导致在图表中显示的中文无法正常识别,...
描述中的链接指向了一篇博客文章,虽然具体内容没有提供,但通常这类文章会详细阐述作者遇到的具体问题、尝试的解决方案以及最终的修复方法。可能包括代码示例、错误日志分析等。 标签中的“源码”可能暗示了解决...
#### 解决方案 为了解决这个问题,我们需要手动添加中文字体文件到JRE中。下面是一步步的操作指南: 1. **获取中文字体文件** - 从Windows操作系统中找到一个名为`simsun.ttc`的字体文件。通常这个文件位于`C:\...
3. **解决方案**: - **修改JFreeChart编码**:在生成图表时,可以通过设置`TextRenderer`的`charset`属性为`UTF-8`来改变JFreeChart的编码。 ```java DefaultCategoryAxis axis = (DefaultCategoryAxis) chart....
《JFreechart生成PDF中文显示问题的解决方案》 在使用JFreechart库生成PDF文档时,经常遇到一个棘手的问题,即中文文字无法正常显示。这主要是由于JFreechart默认的字体映射策略不支持中文字符集导致的。本文将详细...
本文将详细分析 Jfreechart 乱码的常见位置以及提供解决方案。 **一、乱码的位置** 1. **图的标题栏**:当图表的标题或副标题使用了不支持的字符集时,可能会出现乱码。 2. **图的内部**:这可能指的是图表的数据...
以下是一份详细的解决方案,帮助你解决JFreeChart在Linux下的中文乱码问题。 首先,了解JFreeChart的编码机制。JFreeChart默认使用的是平台的默认字符集,而在Linux系统中,这个默认字符集可能不支持中文,因此会...