由Modena.class.getResource(“TestApp.css”)引起的NPE

时间:2014-01-16 17:01:13

标签: java netbeans javafx javafx-8

我正在尝试运行可以找到here的java-fx示例Modena。我在Windows 8上使用Netbeans 8.0 Beta,JDK8最后一个版本。我想知道为什么我甚至无法编译它。

事实上,发生的第一个例外就是这个。

我注意到要成为JavaFX的新手。

该计划中的例外情况是:

private static final String testAppCssUrl = Modena.class.getResource("TestApp.css").toExternalForm();

我断言我已经验证并且文件存在。示例jar文件可以使用我的Java默认配置在我的计算机上运行,​​如上所述。

Exception in thread "JavaFX Application Thread" Exception in thread "main" java.lang.ExceptionInInitializerError
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Class.java:340)
    at com.sun.javafx.application.LauncherImpl$2.run(LauncherImpl.java:330) at com.sun.javafx.application.LauncherImpl$2.run(LauncherImpl.java:330)
    at com.sun.javafx.application.PlatformImpl$7.run(PlatformImpl.java:331) at com.sun.javafx.application.PlatformImpl$7.run(PlatformImpl.java:331)
    at com.sun.javafx.application.PlatformImpl$6$1.run(PlatformImpl.java:297)
    at com.sun.javafx.application.PlatformImpl$6$1.run(PlatformImpl.java:294)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sun.javafx.application.PlatformImpl$6.run(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.access$300(WinApplication.java:39)
    at com.sun.glass.ui.win.WinApplication$4$1.run(WinApplication.java:112)
    at java.lang.Thread.run(Thread.java:744)
Caused by: java.lang.NullPointerException
    at modena.Modena.<clinit>(Modena.java:100)
    ... 13 more
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 sun.launcher.LauncherHelper$FXHelper.main(LauncherHelper.java:767)
Caused by: java.lang.NullPointerException
    at com.sun.javafx.application.LauncherImpl.launchApplicationWithArgs(LauncherImpl.java:362)
    at com.sun.javafx.application.LauncherImpl.launchApplication(LauncherImpl.java:305)
    ... 5 more

1 个答案:

答案 0 :(得分:1)

问题在于只使用Shift+F6运行主文件。我应该使用F6来运行项目。 F6运行项目,但Shift+F6仅运行包含静态main方法的文件,而不考虑项目配置。