5

我想在加载的场景中找到一个 VBox 节点,FXMLoaderNode#lookup()出现以下异常:

java.lang.ClassCastException: com.sun.javafx.scene.control.skin.SplitPaneSkin$Content cannot be cast to javafx.scene.layout.VBox

编码 :

public class Main extends Application {  
    public static void main(String[] args) {
        Application.launch(Main.class, (java.lang.String[]) null);
    }
    @Override
    public void start(Stage stage) throws Exception {
        AnchorPane page = (AnchorPane) FXMLLoader.load(Main.class.getResource("test.fxml"));
        Scene scene = new Scene(page);
        stage.setScene(scene);
        stage.show();

        VBox myvbox = (VBox) page.lookup("#myvbox");
        myvbox.getChildren().add(new Button("Hello world !!!"));
    }
}

fxml 文件:

<AnchorPane id="AnchorPane" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="600.0" xmlns:fx="http://javafx.com/fxml" >
  <children>
    <SplitPane dividerPositions="0.5" focusTraversable="true" prefHeight="400.0" prefWidth="600.0" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0">
      <items>
        <AnchorPane minHeight="0.0" minWidth="0.0" prefHeight="160.0" prefWidth="100.0" />
        <VBox fx:id="myvbox" prefHeight="398.0" prefWidth="421.0" />
      </items>
    </SplitPane>
  </children>
</AnchorPane>

我想知道:
1. 为什么查找方法返回 aSplitPaneSkin$Content而不是 a VBox
2.我怎样才能VBox以另一种方式获得?

提前致谢

4

2 回答 2

10

获取对 VBox 的引用的最简单方法是调用 FXMLLoader#getNamespace()。例如:

VBox myvbox = (VBox)fxmlLoader.getNamespace().get("myvbox");

请注意,您需要创建一个 FXMLLoader 实例并调用 load() 的非静态版本才能使其工作:

FXMLLoader fxmlLoader = new FXMLLoader(getClass().getResource("test.fxml"));
AnchorPane page = (AnchorPane) fxmlLoader.load();
于 2012-09-08T11:52:29.433 回答
7
  1. SplitPane 将所有项目放在单独的堆栈窗格中(想象为SplitPaneSkin$Content)。由于未知原因,FXMLLoader 为它们分配了与根子节点相同的 id。您可以通过下一个实用方法获得所需的 VBox:

    public <T> T lookup(Node parent, String id, Class<T> clazz) {
        for (Node node : parent.lookupAll(id)) {
            if (node.getClass().isAssignableFrom(clazz)) {
                return (T)node;
            }
        }
        throw new IllegalArgumentException("Parent " + parent + " doesn't contain node with id " + id);
    }
    

    并在下一个方式使用它:

    VBox myvbox = lookup(page, "#myvbox", VBox.class);
    myvbox.getChildren().add(new Button("Hello world !!!"));
    
  2. 您可以使用控制器并添加自动填充字段:

    @FXML
    VBox myvbox;
    
于 2012-09-07T21:16:57.567 回答