我的按钮无法打开课程

时间:2016-08-15 05:54:37

标签: java button constructor fxml

基本上,问题是我用Java Scene Builder创建了一个接口。从FXML按钮我想打开我的课程。

    @FXML
    public void pressButton(ActionEvent event) throws Exception {
    Platform.runLater(() -> {
        try{
            new SerialChart().start(new Stage());
        } catch (Exception e) {
            e.printStackTrace();
        }
    });

    }

    @FXML
    public void pressButton2(ActionEvent event) throws Exception {                      
    Platform.runLater(() -> {
         try {
            new Main().start(new Stage());
        } catch (Exception e) {
            e.printStackTrace();
        }
    });
    }

我的Main可以打开,但我的SerialChart无法打开。它说“构造函数SerialChart()未定义”。所以这就是我认为的问题

    public SerialChart(String title) {  
    super(title);

我认为这是我无法打开的问题。请帮帮我...如果需要,我可以告诉你整个代码。

2 个答案:

答案 0 :(得分:0)

就像Jim Garrisson所说的那样,你调用的构造函数不带参数,但是你定义的构造函数没有参数(String title)。这意味着当你在Button函数中调用它时,你需要传入一个String参数(即使是一个空白的参数,如""会工作)。

new SerialChart("Some Title").start(new Stage()); //should be your call in the Button function.

答案 1 :(得分:0)

所以这就是我想出来的答案

    public void pressButton(ActionEvent event) throws Exception {
    Platform.runLater(() -> {
        try{
            SerialChart serialChartDemo = new SerialChart("Clean Energy Data Real time graph");
            serialChartDemo.pack();  
            RefineryUtilities.centerFrameOnScreen(serialChartDemo);  
            serialChartDemo.setVisible(true);
        } catch (Exception e) {
            e.printStackTrace();
        }
    });

}