java實現各種資料統計圖(柱形圖,餅圖,折線圖)

逸卿發表於2014-04-13

最近在做資料探勘的課程設計,需要將資料分析的結果很直觀的展現給使用者,這就要用到資料統計圖,要實現這個功能就需要幾個第三方包了:

1.       jfreechart-1.0.13.jar

2.       jcommon-1.0.16.jar

3.       gnujaxp.jar

 

先來看一下,最終效果圖:

 

主要是jfreechart-1.0.13.jar,但這三個包要齊全,我已經將所有與jfreechart有關的jar包與本文例項的工程(程式碼)一同壓縮上傳了,有興趣的同學可以下載,

下載地址:http://download.csdn.net/detail/pzhtpf/4327700

 

接下來,我們一步步來實現本程式。

 

一,前期準備工作,也就把這三個第三方包新增進本文工程,新增過程特別簡單,前面寫過一篇部落格,講的是java如何讀取Excel表格中的資料(有興趣的同學可以看一看:http://blog.csdn.net/pzhtpf/article/details/7506135),也要新增第三方包,新增過程一模一樣,這裡我們在複習一遍:

1 ,java專案,在這個專案在建立一個新的資料夾lib

2 將上述三個jar包,複製到lib

3然後右鍵點選這個java專案,選擇Properties

4在左側列表裡選中Java Build Path,右側選中Libraries

5點選Add JARs

6 然後去選擇這個專案中lib資料夾中的三個jar,點選確定

成功後,專案中會多一個資料夾為:Referenced Libraries

 

二, 實現柱形圖的java程式碼:

[plain] view plaincopy
  1.   import java.awt.Font;  
  2.   
  3. import org.jfree.chart.ChartFactory;  
  4. import org.jfree.chart.ChartPanel;  
  5. import org.jfree.chart.JFreeChart;  
  6. import org.jfree.chart.axis.CategoryAxis;  
  7. import org.jfree.chart.axis.ValueAxis;  
  8. import org.jfree.chart.plot.CategoryPlot;  
  9. import org.jfree.chart.plot.PlotOrientation;  
  10. import org.jfree.data.category.CategoryDataset;  
  11. import org.jfree.data.category.DefaultCategoryDataset;  
  12.   
  13. public class BarChart {  
  14.     ChartPanel frame1;  
  15.     public  BarChart(){  
  16.         CategoryDataset dataset = getDataSet();  
  17.         JFreeChart chart = ChartFactory.createBarChart3D(  
  18.                              "水果", // 圖表標題  
  19.                             "水果種類", // 目錄軸的顯示標籤  
  20.                             "數量", // 數值軸的顯示標籤  
  21.                             dataset, // 資料集  
  22.                             PlotOrientation.VERTICAL, // 圖表方向:水平、垂直  
  23.                             true,           // 是否顯示圖例(對於簡單的柱狀圖必須是false)  
  24.                             false,          // 是否生成工具  
  25.                             false           // 是否生成URL連結  
  26.                             );  
  27.           
  28.         //從這裡開始  
  29.         CategoryPlot plot=chart.getCategoryPlot();//獲取圖表區域物件  
  30.         CategoryAxis domainAxis=plot.getDomainAxis();         //水平底部列表  
  31.          domainAxis.setLabelFont(new Font("黑體",Font.BOLD,14));         //水平底部標題  
  32.          domainAxis.setTickLabelFont(new Font("宋體",Font.BOLD,12));  //垂直標題  
  33.          ValueAxis rangeAxis=plot.getRangeAxis();//獲取柱狀  
  34.          rangeAxis.setLabelFont(new Font("黑體",Font.BOLD,15));  
  35.           chart.getLegend().setItemFont(new Font("黑體", Font.BOLD, 15));  
  36.           chart.getTitle().setFont(new Font("宋體",Font.BOLD,20));//設定標題字型  
  37.             
  38.           //到這裡結束,雖然程式碼有點多,但只為一個目的,解決漢字亂碼問題  
  39.             
  40.          frame1=new ChartPanel(chart,true);        //這裡也可以用chartFrame,可以直接生成一個獨立的Frame  
  41.            
  42.     }  
  43.        private static CategoryDataset getDataSet() {  
  44.            DefaultCategoryDataset dataset = new DefaultCategoryDataset();  
  45.            dataset.addValue(100, "北京", "蘋果");  
  46.            dataset.addValue(100, "上海", "蘋果");  
  47.            dataset.addValue(100, "廣州", "蘋果");  
  48.            dataset.addValue(200, "北京", "梨子");  
  49.            dataset.addValue(200, "上海", "梨子");  
  50.            dataset.addValue(200, "廣州", "梨子");  
  51.            dataset.addValue(300, "北京", "葡萄");  
  52.            dataset.addValue(300, "上海", "葡萄");  
  53.            dataset.addValue(300, "廣州", "葡萄");  
  54.            dataset.addValue(400, "北京", "香蕉");  
  55.            dataset.addValue(400, "上海", "香蕉");  
  56.            dataset.addValue(400, "廣州", "香蕉");  
  57.            dataset.addValue(500, "北京", "荔枝");  
  58.            dataset.addValue(500, "上海", "荔枝");  
  59.            dataset.addValue(500, "廣州", "荔枝");  
  60.            return dataset;  
  61. }  
  62. public ChartPanel getChartPanel(){  
  63.     return frame1;  
  64.       
  65. }  
  66. }  


 

效果圖如下:

 

但我們把private static CategoryDataset getDataSet(){}方法中的資料變化一下後,又會形成另一種效果,比如說我們改成:

[plain] view plaincopy
  1. private static CategoryDataset getDataSet() {  
  2.            DefaultCategoryDataset dataset = new DefaultCategoryDataset();  
  3.            dataset.addValue(100, "蘋果", "蘋果");  
  4.            dataset.addValue(200, "梨子", "梨子");  
  5.            dataset.addValue(300, "葡萄", "葡萄");  
  6.            dataset.addValue(400, "香蕉", "香蕉");  
  7.            dataset.addValue(500, "荔枝", "荔枝");  
  8.            return dataset;  
  9. }  


 

效果圖如下:

 

三,    實現餅狀圖的java程式碼:

[plain] view plaincopy
  1.  package com.njue.testJFreeChart;  
  2.   
  3. import java.awt.Font;  
  4. import java.text.DecimalFormat;  
  5. import java.text.NumberFormat;  
  6.   
  7. import javax.swing.JPanel;  
  8.   
  9. import org.jfree.chart.ChartFactory;  
  10. import org.jfree.chart.ChartPanel;  
  11. import org.jfree.chart.JFreeChart;  
  12. import org.jfree.chart.labels.StandardPieSectionLabelGenerator;  
  13. import org.jfree.chart.plot.PiePlot;  
  14. import org.jfree.data.general.DefaultPieDataset;  
  15.   
  16. public class PieChart {  
  17.     ChartPanel frame1;  
  18.     public PieChart(){  
  19.           DefaultPieDataset data = getDataSet();  
  20.           JFreeChart chart = ChartFactory.createPieChart3D("水果產量",data,true,false,false);  
  21.         //設定百分比  
  22.           PiePlot pieplot = (PiePlot) chart.getPlot();  
  23.           DecimalFormat df = new DecimalFormat("0.00%");//獲得一個DecimalFormat物件,主要是設定小數問題  
  24.           NumberFormat nf = NumberFormat.getNumberInstance();//獲得一個NumberFormat物件  
  25.           StandardPieSectionLabelGenerator sp1 = new StandardPieSectionLabelGenerator("{0}  {2}", nf, df);//獲得StandardPieSectionLabelGenerator物件  
  26.           pieplot.setLabelGenerator(sp1);//設定餅圖顯示百分比  
  27.         
  28.       //沒有資料的時候顯示的內容  
  29.           pieplot.setNoDataMessage("無資料顯示");  
  30.           pieplot.setCircular(false);  
  31.           pieplot.setLabelGap(0.02D);  
  32.         
  33.           pieplot.setIgnoreNullValues(true);//設定不顯示空值  
  34.           pieplot.setIgnoreZeroValues(true);//設定不顯示負值  
  35.          frame1=new ChartPanel (chart,true);  
  36.           chart.getTitle().setFont(new Font("宋體",Font.BOLD,20));//設定標題字型  
  37.           PiePlot piePlot= (PiePlot) chart.getPlot();//獲取圖表區域物件  
  38.           piePlot.setLabelFont(new Font("宋體",Font.BOLD,10));//解決亂碼  
  39.           chart.getLegend().setItemFont(new Font("黑體",Font.BOLD,10));  
  40.     }  
  41.     private static DefaultPieDataset getDataSet() {  
  42.         DefaultPieDataset dataset = new DefaultPieDataset();  
  43.         dataset.setValue("蘋果",100);  
  44.         dataset.setValue("梨子",200);  
  45.         dataset.setValue("葡萄",300);  
  46.         dataset.setValue("香蕉",400);  
  47.         dataset.setValue("荔枝",500);  
  48.         return dataset;  
  49. }  
  50.     public ChartPanel getChartPanel(){  
  51.         return frame1;  
  52.           
  53.     }  
  54. }  


 

效果圖如下:

 

四,      實現折線圖的java程式碼:

 

[plain] view plaincopy
  1. package com.njue.testJFreeChart;  
  2.   
  3. import java.awt.Font;  
  4. import java.text.SimpleDateFormat;  
  5.   
  6. import org.jfree.chart.ChartFactory;  
  7. import org.jfree.chart.ChartPanel;  
  8. import org.jfree.chart.JFreeChart;  
  9. import org.jfree.chart.axis.DateAxis;  
  10. import org.jfree.chart.axis.ValueAxis;  
  11. import org.jfree.chart.plot.XYPlot;  
  12. import org.jfree.data.time.Month;  
  13. import org.jfree.data.time.TimeSeries;  
  14. import org.jfree.data.time.TimeSeriesCollection;  
  15. import org.jfree.data.xy.XYDataset;  
  16.   
  17. public class TimeSeriesChart {  
  18.     ChartPanel frame1;  
  19.     public TimeSeriesChart(){  
  20.         XYDataset xydataset = createDataset();  
  21.         JFreeChart jfreechart = ChartFactory.createTimeSeriesChart("Legal & General單位信托基金價格", "日期", "價格",xydataset, true, true, true);  
  22.         XYPlot xyplot = (XYPlot) jfreechart.getPlot();  
  23.         DateAxis dateaxis = (DateAxis) xyplot.getDomainAxis();  
  24.         dateaxis.setDateFormatOverride(new SimpleDateFormat("MMM-yyyy"));  
  25.         frame1=new ChartPanel(jfreechart,true);  
  26.         dateaxis.setLabelFont(new Font("黑體",Font.BOLD,14));         //水平底部標題  
  27.         dateaxis.setTickLabelFont(new Font("宋體",Font.BOLD,12));  //垂直標題  
  28.         ValueAxis rangeAxis=xyplot.getRangeAxis();//獲取柱狀  
  29.         rangeAxis.setLabelFont(new Font("黑體",Font.BOLD,15));  
  30.         jfreechart.getLegend().setItemFont(new Font("黑體", Font.BOLD, 15));  
  31.         jfreechart.getTitle().setFont(new Font("宋體",Font.BOLD,20));//設定標題字型  
  32.   
  33.     }   
  34.      private static XYDataset createDataset() {  //這個資料集有點多,但都不難理解  
  35.             TimeSeries timeseries = new TimeSeries("legal & general歐洲指數信任",  
  36.                     org.jfree.data.time.Month.class);  
  37.             timeseries.add(new Month(2, 2001), 181.80000000000001D);  
  38.             timeseries.add(new Month(3, 2001), 167.30000000000001D);  
  39.             timeseries.add(new Month(4, 2001), 153.80000000000001D);  
  40.             timeseries.add(new Month(5, 2001), 167.59999999999999D);  
  41.             timeseries.add(new Month(6, 2001), 158.80000000000001D);  
  42.             timeseries.add(new Month(7, 2001), 148.30000000000001D);  
  43.             timeseries.add(new Month(8, 2001), 153.90000000000001D);  
  44.             timeseries.add(new Month(9, 2001), 142.69999999999999D);  
  45.             timeseries.add(new Month(10, 2001), 123.2D);  
  46.             timeseries.add(new Month(11, 2001), 131.80000000000001D);  
  47.             timeseries.add(new Month(12, 2001), 139.59999999999999D);  
  48.             timeseries.add(new Month(1, 2002), 142.90000000000001D);  
  49.             timeseries.add(new Month(2, 2002), 138.69999999999999D);  
  50.             timeseries.add(new Month(3, 2002), 137.30000000000001D);  
  51.             timeseries.add(new Month(4, 2002), 143.90000000000001D);  
  52.             timeseries.add(new Month(5, 2002), 139.80000000000001D);  
  53.             timeseries.add(new Month(6, 2002), 137D);  
  54.             timeseries.add(new Month(7, 2002), 132.80000000000001D);  
  55.             TimeSeries timeseries1 = new TimeSeries("legal & general英國指數信任",  
  56.                     org.jfree.data.time.Month.class);  
  57.             timeseries1.add(new Month(2, 2001), 129.59999999999999D);  
  58.             timeseries1.add(new Month(3, 2001), 123.2D);  
  59.             timeseries1.add(new Month(4, 2001), 117.2D);  
  60.             timeseries1.add(new Month(5, 2001), 124.09999999999999D);  
  61.             timeseries1.add(new Month(6, 2001), 122.59999999999999D);  
  62.             timeseries1.add(new Month(7, 2001), 119.2D);  
  63.             timeseries1.add(new Month(8, 2001), 116.5D);  
  64.             timeseries1.add(new Month(9, 2001), 112.7D);  
  65.             timeseries1.add(new Month(10, 2001), 101.5D);  
  66.             timeseries1.add(new Month(11, 2001), 106.09999999999999D);  
  67.             timeseries1.add(new Month(12, 2001), 110.3D);  
  68.             timeseries1.add(new Month(1, 2002), 111.7D);  
  69.             timeseries1.add(new Month(2, 2002), 111D);  
  70.             timeseries1.add(new Month(3, 2002), 109.59999999999999D);  
  71.             timeseries1.add(new Month(4, 2002), 113.2D);  
  72.             timeseries1.add(new Month(5, 2002), 111.59999999999999D);  
  73.             timeseries1.add(new Month(6, 2002), 108.8D);  
  74.             timeseries1.add(new Month(7, 2002), 101.59999999999999D);  
  75.             TimeSeriesCollection timeseriescollection = new TimeSeriesCollection();  
  76.             timeseriescollection.addSeries(timeseries);  
  77.             timeseriescollection.addSeries(timeseries1);  
  78.             return timeseriescollection;  
  79.         }  
  80.       public ChartPanel getChartPanel(){  
  81.             return frame1;  
  82.               
  83.         }  
  84. }  


 

效果圖如下:

 

再來看一下主方法

[plain] view plaincopy
  1. import java.awt.GridLayout;  
  2.   
  3. import javax.swing.JFrame;  
  4.   
  5. public class mainClass {  
  6. public static void main(String args[]){  
  7.     JFrame frame=new JFrame("Java資料統計圖");  
  8.     frame.setLayout(new GridLayout(2,2,10,10));  
  9.     frame.add(new BarChart().getChartPanel());           //新增柱形圖  
  10.     frame.add(new BarChart1().getChartPanel());          //新增柱形圖的另一種效果  
  11.     frame.add(new PieChart().getChartPanel());           //新增餅狀圖  
  12.     frame.add(new TimeSeriesChart().getChartPanel());    //新增折線圖  
  13.     frame.setBounds(50, 50, 800, 600);  
  14.     frame.setVisible(true);  
  15. }  
  16. }  


 

五,             總結

 

以上都是一個簡單的例子去實現了,想了解更深的同學可自行查詢資料,其實以上程式碼都通俗易懂,只要結合自己的實際情況,便可開發出屬於自己的Application,大家可以看出我這裡是在Application上實現的,其實更多情況資料統計圖在javaweb上應用更多,大家也可自行了解。

ps:如執行本文工程專案是出現錯誤,請參考博文:http://blog.csdn.net/pzhtpf/article/details/7506135

 

相關文章