JFreeChart - Interfaccia database
Questo capitolo spiega come leggere semplici dati da una tabella di database e quindi utilizzare JFreeChart per creare un grafico di propria scelta.
Dati aziendali
Considera che abbiamo la seguente tabella MySQL mobile_tbl (mobile_brand VARCHAR (100) NOT NULL, unit_sale INT NO NULL);
Considera che questa tabella contiene i seguenti record:
Marche mobili | Unita 'vendute |
---|---|
IPhone5S | 20 |
Samsung Grand | 20 |
MotoG | 40 |
Nokia Lumia | 10 |
Generazione di grafici tramite database
Di seguito è riportato il codice per creare un grafico a torta basato sulle informazioni fornite nella tabella mobile_tbl disponibile in test_db in un database MySQL. In base alle tue esigenze, puoi utilizzare qualsiasi altro database.
import java.io.*;
import java.sql.*;
import org.jfree.chart.ChartUtilities;
import org.jfree.chart.ChartFactory;
import org.jfree.chart.JFreeChart;
import org.jfree.data.general.DefaultPieDataset;
public class PieChart_DB {
public static void main( String[ ] args )throws Exception {
String mobilebrands[] = {
"IPhone 5s",
"SamSung Grand",
"MotoG",
"Nokia Lumia"
};
/* Create MySQL Database Connection */
Class.forName( "com.mysql.jdbc.Driver" );
Connection connect = DriverManager.getConnection(
"jdbc:mysql://localhost:3306/jf_testdb" ,
"root",
"root123");
Statement statement = connect.createStatement( );
ResultSet resultSet = statement.executeQuery("select * from mobile_data" );
DefaultPieDataset dataset = new DefaultPieDataset( );
while( resultSet.next( ) ) {
dataset.setValue(
resultSet.getString( "mobile_brand" ) ,
Double.parseDouble( resultSet.getString( "unit_sale" )));
}
JFreeChart chart = ChartFactory.createPieChart(
"Mobile Sales", // chart title
dataset, // data
true, // include legend
true,
false );
int width = 560; /* Width of the image */
int height = 370; /* Height of the image */
File pieChart = new File( "Pie_Chart.jpeg" );
ChartUtilities.saveChartAsJPEG( pieChart , chart , width , height );
}
}
Manteniamo il codice Java sopra in formato PieChart_DB.java file, quindi compilarlo ed eseguirlo dal comando richiesto come -
$javac PieChart_DB.java
$java PieChart_DB
Se tutto va bene, verrà compilato ed eseguito per creare un file immagine JPEG denominato Pie_Chart.jpeg con la seguente tabella.