嘿伙计们,我知道javafx,我正在尝试将一个BorderPane转换为anchronPane,同时发生错误,我不知道该怎么做,我正在关注一个教程,所以请帮助
import java.io.IOException;
import javafx.application.Application;
import javafx.fxml.FXMLLoader;
import javafx.scene.Scene;
import javafx.scene.layout.AnchorPane;
import javafx.scene.layout.BorderPane;
import javafx.stage.Stage;
public class MainApp extends Application {
private Stage primaryStage;
private BorderPane rootLayout;
@Override
public void start(Stage primaryStage) {
this.primaryStage = primaryStage;
this.primaryStage.setTitle("AddressApp");
initRootLayout();
showPersonOverview();
}
/**
* Initializes the root layout.
*/
public void initRootLayout() {
try {
// Load root layout from fxml file.
FXMLLoader loader = new FXMLLoader();
loader.setLocation(MainApp.class.getResource("view/RootLayout.fxml"));
rootLayout = (BorderPane) loader.load();
// Show the scene containing the root layout.
Scene scene = new Scene(rootLayout);
primaryStage.setScene(scene);
primaryStage.show();
} catch (IOException e) {
e.printStackTrace();
}
}
/**
* Shows the person overview inside the root layout.
*/
public void showPersonOverview() {
try {
// Load person overview.
FXMLLoader loader = new FXMLLoader();
loader.setLocation(MainApp.class.getResource("view/PersonOverview.fxml"));
AnchorPane personOverview = (AnchorPane) loader.load();
// Set person overview into the center of root layout.
rootLayout.setCenter(personOverview);
} catch (IOException e) {
e.printStackTrace();
}
}
/**
* Returns the main stage.
* @return
*/
public Stage getPrimaryStage() {
return primaryStage;
}
public static void main(String[] args) {
launch(args);
}
}
我收到此错误
Exception in Application start method
java.lang.reflect.InvocationTargetException
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:483)
at com.sun.javafx.application.LauncherImpl.launchApplicationWithArgs(LauncherImpl.java:367)
at com.sun.javafx.application.LauncherImpl.launchApplication(LauncherImpl.java:305)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:483)
at sun.launcher.LauncherHelper$FXHelper.main(LauncherHelper.java:767)
Caused by: java.lang.RuntimeException: Exception in Application start method
atcom.sun.javafx.application.LauncherImpl.launchApplication1(LauncherImpl.java:894)
at com.sun.javafx.application.LauncherImpl.access$000(LauncherImpl.java:56)
at com.sun.javafx.application.LauncherImpl$1.run(LauncherImpl.java:158)
at java.lang.Thread.run(Thread.java:745)
Caused by: java.lang.ClassCastException: javafx.scene.layout.AnchorPane cannot be cast to javafx.scene.layout.BorderPane
at ch.makery.address.MainApp.initRootLayout(MainApp.java:35)
at ch.makery.address.MainApp.start(MainApp.java:22)
at com.sun.javafx.application.LauncherImpl$8.run(LauncherImpl.java:837)
at com.sun.javafx.application.PlatformImpl$7.run(PlatformImpl.java:335)
at com.sun.javafx.application.PlatformImpl$6$1.run(PlatformImpl.java:301)
at com.sun.javafx.application.PlatformImpl$6$1.run(PlatformImpl.java:298)
at java.security.AccessController.doPrivileged(Native Method)
at com.sun.javafx.application.PlatformImpl$6.run(PlatformImpl.java:298)
atcom.sun.glass.ui.InvokeLaterDispatcher$Future.run(InvokeLaterDispatcher.ja va:95)
at com.sun.glass.ui.win.WinApplication._runLoop(Native Method)
at com.sun.glass.ui.win.WinApplication.access$300(WinApplication.java:39)
at com.sun.glass.ui.win.WinApplication$4$1.run(WinApplication.java:112)
... 1 more
运行应用程序ch.makery.address.MainApp的异常 Java结果:1
所以,如果我不能投,那我该怎么办?
答案 0 :(得分:5)
我也遵循相同的教程,遇到了同样的问题。
在我的情况下,在创建RootLayout FXML时,我错误地选择 AnchorPane 作为根元素而不是 BorderPane 。因此,在initRootLayout()方法中,它尝试将AnchorPane对象转换为BorderPane对象。正如前面评论中提到的那样,AnchorPane和BorderPane扩展了Pane,不可能将它们相互投射!
因此,如果选择 BorderPane 作为RootLayout.fxml的根元素,则会将对象正确地转换为BorderPane。因此,现在我想知道,如果甚至需要这种铸造?
我希望你的问题现在已经解决了。这可能对遇到此问题的其他人有所帮助!
答案 1 :(得分:3)
BorderPane
延伸Pane
AnchorPane
延伸Pane
它们扩展了相同的类,但它们是不同的类,并生成不能相互转换的不同对象。
Lion
延伸BigCat
Tiger
延伸BigCat
您如何将Lion
投射到Tiger
?
答案 2 :(得分:0)
由于缺乏要点我无法对已接受的答案发表评论,因此添加为新帖子。
根元素是文档层次结构中的最低元素。
创建新的空FXML文件时,请在您选择的IDE中打开文件进行编辑。请注意,该文件包含类型<AnchorPane>
的根标记。这是因为FXML的根容器是AnchorPane类型。
如果在SceneBuilder中打开FXML文件并在左下角查看文档层次结构,您将看到AnchorPane被列为您的根元素。单击此元素并将其删除,然后保存文件。如果再次在IDE中查看保存的文件,则应该看到一个完全空白的文件。这是因为您已经完全删除了根元素。
现在返回到SceneBuilder中的文件。在左上方面板的库中找到BorderPane元素,并将其拖动到场景中(中间的Scenebuilder面板)。现在,当您查看文档层次结构时,您将看到BorderPane被列为文档的根元素。将文件保存在Scenebuilder中,然后返回到IDE。您将看到您的元素现在具有类型为<BorderPane>
的根标记。
希望这可以帮助某个人!