package ftp.sar; 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{ ResourceLoader loader = ResourceLoader.getInstance(); Parent root = FXMLLoader.load(loader.getResource("main_page.fxml")); primaryStage.setTitle("FTP SAR"); primaryStage.setScene(new Scene(root)); // primaryStage.setResizable(false); primaryStage.show(); } public static void main(String[] args) { launch(args); } }