Netbeans 中的所有 FXML 项目都开始抛出 InvocationTargetException

Netbeans 中的所有 FXML 项目都开始抛出 InvocationTargetException

每当我启动一个新的 FXML 应用程序并尝试运行主程序时,我都会收到此错误消息:

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:498)
    at com.sun.javafx.application.LauncherImpl.launchApplicationWithArgs(LauncherImpl.java:389)
    at com.sun.javafx.application.LauncherImpl.launchApplication(LauncherImpl.java:328)
    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:498)
    at sun.launcher.LauncherHelper$FXHelper.main(LauncherHelper.java:767)
Caused by: java.lang.RuntimeException: Exception in Application start method
    at com.sun.javafx.application.LauncherImpl.launchApplication1(LauncherImpl.java:917)
    at com.sun.javafx.application.LauncherImpl.lambda$launchApplication$159(LauncherImpl.java:182)
    at java.lang.Thread.run(Thread.java:748)
Caused by: java.lang.NullPointerException: Location is required.
    at javafx.fxml.FXMLLoader.loadImpl(FXMLLoader.java:3207)
    at javafx.fxml.FXMLLoader.loadImpl(FXMLLoader.java:3175)
    at javafx.fxml.FXMLLoader.loadImpl(FXMLLoader.java:3148)
    at javafx.fxml.FXMLLoader.loadImpl(FXMLLoader.java:3124)
    at javafx.fxml.FXMLLoader.loadImpl(FXMLLoader.java:3104)
    at javafx.fxml.FXMLLoader.load(FXMLLoader.java:3097)
    at javafxapplication9.JavaFXApplication9.start(JavaFXApplication9.java:22)
    at com.sun.javafx.application.LauncherImpl.lambda$launchApplication1$166(LauncherImpl.java:863)
    at com.sun.javafx.application.PlatformImpl.lambda$runAndWait$179(PlatformImpl.java:326)
    at com.sun.javafx.application.PlatformImpl.lambda$null$177(PlatformImpl.java:295)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sun.javafx.application.PlatformImpl.lambda$runLater$178(PlatformImpl.java:294)
    at com.sun.glass.ui.InvokeLaterDispatcher$Future.run(InvokeLaterDispatcher.java:95)
    at com.sun.glass.ui.win.WinApplication._runLoop(Native Method)
    at com.sun.glass.ui.win.WinApplication.lambda$null$152(WinApplication.java:177)
    ... 1 more
Exception running application javafxapplication9.JavaFXApplication9
C:\Users\Kacper\Documents\NetBeansProjects\JavaFXApplication9\nbproject\build-impl.xml:1052: The following error occurred while executing this line:
C:\Users\Kacper\Documents\NetBeansProjects\JavaFXApplication9\nbproject\build-impl.xml:806: Java returned: 1

我正在使用 scenebuilder 编辑 FXML 文档,以前一切都运行良好。我尝试卸载并重新安装 netbeans IDE 和 scenebuilder,但没有帮助。所有其他类型的项目似乎都运行良好。我不知道它是如何以及为什么会坏掉的,但也许这与我最近卸载 Oracle DB 18c 有关。

答案1

每次我重命名我的包或将 FXML 文件移动到另一个包时都会出现该错误。

右键单击您的 FXML 文件,选择编辑,然后查找如下所示的行:fx:controller="schoolmanagement.ui.login.FXMLDocumentController">(取决于您的包名称。我的是 schoolmanagement.ui.login)。确保字符串与找到该 FXMLDocument 的包名称匹配。这对我有用。希望对您有所帮助。

答案2

我也遇到了这个问题,我尝试了 Stackoverflow 上提供的其他几种解决方案,但都没有用。基于此:https://netbeans.org/bugzilla/show_bug.cgi?id=241405。我尝试在 Netbeans 11.0 中清理并构建我的项目,突然我的项目运行起来没有问题。这似乎是 Netbeans 的一个怪癖。由于您正在使用 Netbeans,也许它也能帮助您解决问题?

相关内容