如何使用id在JavaFx中获取元素?

我是FXML的新手,我正在尝试使用switch为所有按钮点击创建一个处理程序。 但是,为了做到这一点,我需要使用和id获取元素。 我尝试了以下但由于某种原因(可能是因为我在控制器类中而不是在主节点上)我得到了堆栈溢出exception。

 public class ViewController { public Button exitBtn; public ViewController() throws IOException { Parent root = FXMLLoader.load(getClass().getResource("mainWindow.fxml")); Scene scene = new Scene(root); exitBtn = (Button) scene.lookup("#exitBtn"); } 

}

那么我如何使用它的id作为参考获得一个元素(例如一个按钮)?

该按钮的fxml块是:

最后,从您的控制器类以外的类加载FXML(可能,但不一定是您的Application类)

 Parent root = FXMLLoader.load(getClass().getResource("path/to/fxml")); Scene scene = new Scene(root); // etc... 
Interesting Posts