Как мне добавить javafx.stage.FileChooser на сцену в приложении javafx с графическим интерфейсом.
Я сделал следующее
Group root = new Group();
Scene scene = new Scene(root,800,800,Color.BLANCHEDALMOND);
FileChooser fc = new FileChooser();
root.getChildren().add(fc);
Однако я получаю следующую ошибку.
no suitable method found for add(javafx.stage.FileChooser)
method java.util.List.add(int,javafx.scene.Node) is not applicable
(actual and formal argument lists differ in length)
method java.util.List.add(javafx.scene.Node) is not applicable
(actual argument javafx.stage.FileChooser cannot be converted to javafx.scene.Node by method invocation conversion)
Может ли кто-нибудь дать какой-нибудь совет?