IDE中的应用程序启动方法中的异常问题

时间:2019-05-19 16:00:57

标签: javafx scenebuilder

在尝试将按钮连接到Controller类后,我在IDE的Application start方法中遇到了ErrorException异常。

我确实阅读/尝试过所有建议,例如getClassLoader(),执行“ /sample.fxml”,将文件与MAIN放在一起,但没有任何帮助。请帮助我发现问题。

结构为:

scr
   sample
         Controller
         Main
         sample.fxml

因此,传递“ sample.fxml”看起来不错。还有什么可能是个问题?

 package sample;

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

public class Main extends Application {

    @Override
    public void start(Stage primaryStage) throws Exception{
        Parent root = FXMLLoader.load(getClass().getResource("sample.fxml"));
        primaryStage.setTitle("Hello World");
        primaryStage.setScene(new Scene(root, 300, 275));
        primaryStage.show();
    }


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

1 个答案:

答案 0 :(得分:0)

尝试一下。

Parent root = FXMLLoader.load(getClass().getResource("/sample/sample.fxml"));
Scene scene = new Scene(root);
primaryStage.setTitle("Hello World");
primaryStage.setScene(scene);
primaryStage.show();