1.导入依赖
<!--用于生成图片 -->
<dependency>
<groupId>org.jfree</groupId>
<artifactId>jfreechart</artifactId>
<version>1.0.19</version>
</dependency>
2.代码
public class JFreeChartUtil {
public static void main(String[] args) {
DefaultPieDataset pds = new DefaultPieDataset();
pds.setValue("00点-04点", 100);
pds.setValue("04点-08点", 200);
pds.setValue("08点-12点", 300);
pds.setValue("12点-16点", 400);
pds.setValue("16点-20点", 500);
pds.setValue("20点-24点", 600);
String filePath = "d:/pie.jpg";
createPieChart(pds,filePath);
}
public static void createPieChart(DefaultPieDataset pds, String filePath) {
try {
// 分别是:显示图表的标题、需要提供对应图表的DateSet对象、是否显示图例、是否生成贴士以及是否生成URL链接
JFreeChart chart = ChartFactory.createPieChart("今日放屁次数:时间段分布图", pds, false, false, true);
// 如果不使用Font,中文将显示不出来
Font font = new Font("宋体", Font.BOLD, 12);
// 设置图片标题的字体
chart.getTitle().setFont(font);
// 得到图块,准备设置标签的字体
PiePlot plot = (PiePlot) chart.getPlot();
// 设置标签字体
plot.setLabelFont(font);
plot.setStartAngle(new Float(3.14f / 2f));
// 设置plot的前景色透明度
plot.setForegroundAlpha(0.7f);
// 设置plot的背景色透明度
plot.setBackgroundAlpha(0.0f);
// 饼图连接线
plot.setLabelLinkStroke(new BasicStroke(5.0f));
// 设置标签生成器(默认{0})
// {0}:key {1}:value {2}:百分比 {3}:sum
plot.setLabelGenerator(new StandardPieSectionLabelGenerator("{0}({1}占{2})"));
// 将内存中的图片写到本地硬盘
ChartUtilities.saveChartAsJPEG(new File(filePath), chart, 600, 300);
} catch (Exception e) {
e.printStackTrace();
}
}
}