Tag: h2

从Mysql DB填充JFreechart TimeSeriesCollection?

我正在尝试在我的应用程序中创建一个图表,它可以返回几个月内的温度。 此图表是JFreechart TimeSeriesCollection,我无法让图表从数据库中读取正确的数据。 它显示了一些值,但不是全部,并且没有显示正确的时间。 为了解决这个问题,我试图实现这里发布的图表,但仍然无法解决我的问题,即使已经去看了这个问题 ,正如人们建议的那样 public class NewClass extends ApplicationFrame { Connection conexao = null; PreparedStatement pst= null; ResultSet rs = null; public NewClass(String title) throws SQLException, ParseException { super(title); ChartPanel chartPanel = (ChartPanel) createDemoPanel(); chartPanel.setPreferredSize(new java.awt.Dimension(500, 270)); setContentPane(chartPanel); } private static JFreeChart createChart(XYDataset dataset) { JFreeChart chart = ChartFactory.createTimeSeriesChart( “Temperatura/Date”, // title “Date”, […]