如何使用Java创建图表图像

时间:2018-07-14 17:45:27

标签: java javafx charts

我需要通过读取数据库中的一些条目来创建图表。我只想创建图表的图像并创建一个新的png。我更喜欢使用Java本机库执行此操作,到目前为止,我已经能够完成以下工作。

CASE WHEN

在上面的示例中,我需要启动一个应用程序并创建图表。我只需要创建图表的图像并将其写入文件,是否有一种无需启动应用即可完成此操作的方法?还是有更好的方法来做到这一点?

1 个答案:

答案 0 :(得分:0)

以下是如何使用JavaFX完成此操作

import javafx.application.Platform;
import javafx.collections.FXCollections;
import javafx.collections.ObservableList;
import javafx.embed.swing.JFXPanel;
import javafx.embed.swing.SwingFXUtils;
import javafx.scene.Scene;
import javafx.scene.chart.PieChart;
import javafx.scene.image.WritableImage;
import javafx.stage.Stage;

import java.io.File;
import java.io.IOException;
import java.nio.file.Paths;
import javax.imageio.ImageIO;

public class Test {

    public static void main(String[] args) {

        String chartGenLocation = "/Users/work/tmp";
        new JFXPanel();
        ObservableList<PieChart.Data> pieChartData =
                FXCollections.observableArrayList(
                        new PieChart.Data("Failed", 10),
                        new PieChart.Data("Skipped", 20));
        final PieChart chart = new PieChart(pieChartData);
        chart.setAnimated(false);
        Platform.runLater(() -> {
            Stage stage = new Stage();
            Scene scene = new Scene(chart, 500, 500);
            stage.setScene(scene);
            WritableImage img = new WritableImage(500, 500);
            scene.snapshot(img);

            File file = new File(Paths.get(chartGenLocation, "a.png").toString());
            try {
                ImageIO.write(SwingFXUtils.fromFXImage(img, null), "png", file);
            } catch (IOException e) {
                //logger.error("Error occurred while writing the chart image
            }
        });
    }
}