我试图在fxml文件中创建一个fileChooser。我的代码如下所示:
<HBox alignment="CENTER">
<Label text="Tower 1 Image" />
<TextField fx:id="tower1ImageField" />
<FileChooser fx:id ="tower1FileChooser" />
</HBox>
控制器读起来像这样:
public class HudBuilderController{
@FXML TextField tower1ImageField;
@FXML FileChooser tower1FileChooser;
File towerFile;
@FXML TextField tower2ImageField;
@FXML FileChooser tower2FileChooser;
}
但是,我收到的错误是我不明白的:
Caused by: java.lang.IllegalArgumentException: Unable to coerce javafx.stage.FileChooser@5e85f35 to class javafx.scene.Node.
at com.sun.javafx.fxml.BeanAdapter.coerce(Unknown Source)
at javafx.fxml.FXMLLoader$Element.add(Unknown Source)
at javafx.fxml.FXMLLoader$ValueElement.processEndElement(Unknown Source)
at javafx.fxml.FXMLLoader.processEndElement(Unknown Source)
... 26 more
我已经尝试在控制器中实例化FileChooser,但我想我需要在fxml文件中添加更多内容。有帮助吗?谢谢!
答案 0 :(得分:5)
FileChooser
并未延伸至Node
,因此您无法在FXML
中使用它。别忘了FXML只是用户界面的一种表示。无需将要在Controller中使用的所有组件添加到FXML
。
您只需在控制器中初始化FileChooser
:
FileChooser fileChooser = new FileChooser();
FileChooser.ExtensionFilter extFilter = new FileChooser.ExtensionFilter("TXT files (*.txt)", "*.txt");
fileChooser.getExtensionFilters().add(extFilter);
File file = fileChooser.showOpenDialog(primaryStage);
System.out.println(file);
JavaFX 8 API Reference: FileChooser
最后,FileChooser
是一个在屏幕上打开的对话框。不确定为什么要在FXML中使用它?只需在代码中使用它并使用您获得的文件路径。
答案 1 :(得分:1)
HBox的默认属性是children
,它是一个节点列表。由于FileChooser不是Node,因此无法将其添加到HBox的子节点列表中。