1

そこで、JavaFX の Scene Builder ツールを使用して FXML インターフェイスを作成し、それを自分のコードで読み込もうとしています。しかし、FXML ドキュメントを読み込もうとしたときに、次のエラーが発生しました: FXMLLoader.load can't be resolved to a type.

これが私のコードです:

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 ドキュメントは、最上位のプロジェクト フォルダに含まれています。

私は間違って何をしていますか?

4

1 に答える 1