Application start方法java.lang.reflect.InvocationTargetException中的异常

时间:2016-02-09 02:00:44

标签: java javafx javafx-2

我刚刚开始使用JavaFX,我正在尝试使用标签,文本字段和按钮构建一个简单的应用程序,单击该按钮时,将标签的值设置为文本字段的值。一切顺利,直到我将控制器连接到主文件。这是我的代码:

Main.java

package application;

import java.io.IOException;

import javafx.application.Application;
import javafx.fxml.FXMLLoader;
import javafx.stage.Stage;
import javafx.scene.Scene;
import javafx.scene.layout.AnchorPane;


public class Main extends Application {

    private Stage primaryStage;

    @Override
    public void start(Stage primaryStage) {
        this.primaryStage = primaryStage; // connect primary stage
        mainWindow();
    }

    // main window
    public void mainWindow() {
        try {
            // view
            FXMLLoader loader = new FXMLLoader(Main.class.getResource("/MainWindowView.fxml"));
            AnchorPane pane = loader.load();

            // controller
            MainWindowController mainWindowController = loader.getController();
            mainWindowController.setMain(this);

            // scene on stage
            Scene scene = new Scene(pane);
            primaryStage.setScene(scene);
            primaryStage.show();

        } catch (IOException e) {
            e.printStackTrace();
        }
    }

    public static void main(String[] args) {
        launch(args);
    }
}

MainWindowView.fxml

<?xml version="1.0" encoding="UTF-8"?>

<?import javafx.scene.text.*?>
<?import javafx.scene.control.*?>
<?import java.lang.*?>
<?import javafx.scene.layout.*?>
<?import javafx.scene.layout.AnchorPane?>

<AnchorPane prefHeight="400.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1" fx:controller="application.MainWindowController">
   <children>
      <Label fx:id="label" alignment="CENTER" layoutX="291.0" layoutY="164.0" text="Label" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0">
         <font>
            <Font size="20.0" />
         </font>
      </Label>
      <HBox alignment="CENTER" layoutX="201.0" layoutY="208.0" spacing="20.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0">
         <children>
            <TextField fx:id="field" layoutX="201.0" layoutY="208.0" />
            <Button layoutX="381.0" layoutY="208.0" mnemonicParsing="false" onAction="#handleButton" text="Change Text" />
         </children>
      </HBox>
   </children>
</AnchorPane>

MainWindowController.java

package application;

import javafx.fxml.FXML;
import javafx.scene.control.Label;
import javafx.scene.control.TextField;

public class MainWindowController {

    // views
    @FXML private Label label;
    @FXML private TextField field;

    private Main main;

    // connect main class to controller
    public void setMain(Main main) {
        this.main = main; 
    }

    // assign text field text to label on button click
    public void handleButton() {
        String text = field.getText();
        label.setText(text);
        field.clear();
    }
}

我已尝试在StackOverflow上找到多个答案,但我发现的所有答案都来自2年前,并没有对我的代码产生任何积极影响。

编辑:此处的堆栈跟踪:

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:497)
    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:497)
    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$155(LauncherImpl.java:182)
    at java.lang.Thread.run(Thread.java:745)
Caused by: java.lang.IllegalStateException: Location is not set.
    at javafx.fxml.FXMLLoader.loadImpl(FXMLLoader.java:2434)
    at javafx.fxml.FXMLLoader.load(FXMLLoader.java:2409)
    at application.Main.mainWindow(Main.java:27)
    at application.Main.start(Main.java:19)
    at com.sun.javafx.application.LauncherImpl.lambda$launchApplication1$162(LauncherImpl.java:863)
    at com.sun.javafx.application.PlatformImpl.lambda$runAndWait$175(PlatformImpl.java:326)
    at com.sun.javafx.application.PlatformImpl.lambda$null$173(PlatformImpl.java:295)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sun.javafx.application.PlatformImpl.lambda$runLater$174(PlatformImpl.java:294)
    at com.sun.glass.ui.InvokeLaterDispatcher$Future.run(InvokeLaterDispatcher.java:95)
Exception running application application.Main

13 个答案:

答案 0 :(得分:8)

对于任何在将来遇到同样问题的人,如James_D和其他答案提供者所提到的,删除路径开头的“/”可以解决问题所以使用

FXMLLoader loader = new FXMLLoader(Main.class.getResource("MainWindowView.fxml"));

而不是

FXMLLoader loader = new FXMLLoader(Main.class.getResource("/MainWindowView.fxml"));

答案 1 :(得分:2)

猜猜这个?

@FXML
void handleButton(ActionEvent event) {

答案 2 :(得分:2)

即使路径完全正确,也会出现此问题。

  1. 更新的IDE 创建 fxml 文件时。

  2. 然后使用旧的JavaFX Scene Builder 设计

  3. 解决方案:

    1. 在JavaFX Scane Builder中创建 fxml 文件

    2. 设计 JavaFX Scane Builder中的 fxml 文件,然后将其复制到IDE或项目中。

答案 3 :(得分:0)

未设置位置。
此异常表明代码无法访问您的FXML文件。 如果您在任何包中包含fxml文件,则使用包名称指定它。

答案 4 :(得分:0)

我也遇到过这种情况,请跟随我,希望能成功:工具>选项> Java> JavaFX> Scenne Buider主页>更改链接。 您通往Scenne Buider的路线不合适,我花了数小时才找到,这很耗时,但是启动JavaFX时,这始终是很重要的事情。

答案 5 :(得分:0)

执行以下操作


computed: {
    config(){
        return Object.assign({}, this.defaults, this. externalOptions)
    },

从.fxml文件名前面删除/。 我认为应该可以。 它为我解决了同样的错误。

答案 6 :(得分:0)

我在“场景生成器8.5”中使用了“正确的路径”时遇到了同样的问题,将其升级到11.0,现在可以正常工作了(我已经重新设计了所有GUI)。

答案 7 :(得分:0)

另一个原因可能是缺少VM选项:

--module-path <path-to-javafx>/javafx-sdk-11.0.2/lib 
--add-modules=javafx.controls,javafx.fxml

答案 8 :(得分:0)

我一直在寻找这个话题和答案,但情况对我来说有些不同

写在主文件中的代码不是像这样提到的:

FXMLLoader loader = new FXMLLoader(Main.class.getResource("MainWindowView.fxml"));

我的代码如下:

FXMLLoader fxmlLoader = new FXMLLoader(App.class.getResource(fxml + ".fxml"));

我遇到了相同的错误(大约)

答案 9 :(得分:0)

解决方案:

1:通过以下命令将模块路径和模块添加到您的 VM 选项: --module-path <path of your fx library> --add-modules javafx.contros,jafafx.fxml

应该通过上面的方法解决,如果没有解决就下一步

2:创建一个单独的 fxml 并将其添加到您的项目中,它将起作用。

答案 10 :(得分:-1)

回复评论是完全错误的.. – kleopatra 对您来说可能是这样,但是在应用程序启动方法 java.lang.reflect.InvocationTargetException 中具有相同的异常,并在 JavaFx8 版本下将 .getResource(fxml + ".fxml") 作为触发器,这为我解决了问题,这是解决方案,因此您的评论完全错误是个人问题,而​​不是一般性问题。对某些人来说,这只是他们需要的解决方案。

答案 11 :(得分:-1)

用返回相同 URL 的文件类替换 .getResource() 并解决问题。只要文件路径有效,就无需担心将 / 添加到文件路径或使用相对或绝对文件路径 - 检查 f.exist 以确保。在此平台上遵循所有可能的线程答案后,我发布了我尝试并解决的问题,但没有有效结果。下面的这段代码为我解决了这个问题,所以如果你之前评论过的 -kleopatra 对你来说是完全错误的,那没关系。不适合我。

try { 
    File f = New File("");URL myfile = new File(f.getAbsolutePath()).toURL(); scene.getStylesheets().add(myfile.toExternalForm()); 
    } catch(Exception e) {
}

答案 12 :(得分:-2)

.getResource("MainWindowView.fxml"));和 .getResource(fxml + ".fxml"));

是问题,即使文件路径完全有效也会引发 NullPointer 和其他未找到文件异常,通过使用返回与前面所述相同的 URL 值的文件类来摆脱它,并且您的代码应该可以正常工作。< /p>