在应用程序启动方法中称为异常
java.lang.reflect.InvocationTargetException
我已经做过一些研究,包括更改“位置”解决方案,但我仍然不知道我的错误是什么?
public void start(Stage stage) throws Exception{
Parent root = FXMLLoader.load(getClass().getResource("/databasefinalproject/FXMLDocument(1).fxml"));
Scene scene = new Scene(root);
stage.setScene(scene);
stage.show();
}
我已经将它连接到数据库并进行了编译,但是它可以完美地编译,唯一的问题是当我开始运行它时,它会显示错误-
应用程序启动方法异常
java.lang.reflect.InvocationTargetException
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)