gpt4 book ai didi

java - FXMLLoader.load 无法解析为类型

转载 作者:太空宇宙 更新时间:2023-11-04 14:09:03 25 4
gpt4 key购买 nike

因此,我使用 JavaFX 的 Scene Builder 工具创建了一个 FXML 界面,并尝试通过我的代码加载它。但是,我在尝试加载 FXML 文档时遇到了此错误:FXMLLoader.load 无法解析为类型

这是我的代码:

import javafx.application.Application;
import javafx.event.ActionEvent;
import javafx.event.EventHandler;
import javafx.fxml.FXMLLoader;
import javafx.geometry.Pos;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.control.TextField;
import javafx.scene.layout.GridPane;
import javafx.scene.layout.StackPane;
import javafx.stage.Stage;

public class Driver extends Application {

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

@Override
public void start(Stage primaryStage) {

Parent root = new FXMLLoader.load(getClass().getResource("interface.fxml"));
Scene scene = new Scene(root, 600, 400);

primaryStage.setTitle("Wiki Scraper");
primaryStage.setScene(scene);
primaryStage.show();

}
}

我的 FXML 文档包含在最顶层的项目文件夹中。

我做错了什么?

最佳答案

尝试这样拆分:

    FXMLLoader loader = new FXMLLoader(this.getClass().getResource("DefaultFrame.fxml"));
Parent root = (Parent) loader.load();
dfController = loader.getController();

关于java - FXMLLoader.load 无法解析为类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28557079/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com