2012-09-07 57 views
5

我想找到裝有FXMLoader感謝Node#lookup()一個場景中的垂直框節點,但我得到以下異常:的JavaFX 2.0 + FXML - 奇怪的查詢行爲

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.爲什麼查找方法返回一個SplitPaneSkin$Content而不是VBox
2.如何以其他方式獲得VBox

預先感謝

回答

7
  1. SplitPane放入單獨的堆棧窗格所有(如幻想SplitPaneSkin$Content)。由於未知的原因FXMLLoader爲它們分配了與root子相同的id。你可以得到垂直框中,你需要在明年實用方法:

    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. 可以使用Controller並添加autopopulated領域:

    @FXML 
    VBox myvbox; 
    
+0

我已經更新了我的用一個簡單的例子發佈。我知道'@ FXML'註釋,但我不能使用它,因爲id是自動生成的。 –

+0

更新瞭解決方法 –

+0

太棒了,它工作正常。我沒有想到FXMLoader爲它們分配了與root子相同的id。我很高興看到甲骨文的JavaFX UI團隊的QA技術負責人迴應了stackoverflow的問題。 **非常感謝** –

9

獲取對VBox的引用的最簡單方法是調用FXMLLoader#getNamespace()。例如:

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

注意,您需要創建FXMLLoader的一個實例,並調用加載()的非靜態版本,以這個工作:

FXMLLoader fxmlLoader = new FXMLLoader(getClass().getResource("test.fxml")); 
AnchorPane page = (AnchorPane) fxmlLoader.load();