我收到错误"错误:无法找到或加载主类应用程序。主要" 该项目已在源代码树的帮助下克隆。
这是我的main.java类:
package application;
import javafx.application.Application;
import javafx.fxml.FXMLLoader;
import javafx.stage.Stage;
import javafx.scene.Parent;
import javafx.scene.Scene;
public class Main extends Application
{
@Override
public void start(Stage primaryStage)
{
try
{
Parent root =FXMLLoader.load(getClass().getResource("/application/GetStarted.fxml"));
Scene scene = new Scene(root);
scene.getStylesheets().add(getClass().getResource("application.css").toExternalForm());
primaryStage.setScene(scene);
primaryStage.setTitle("LOGIN");
primaryStage.setResizable(false);
primaryStage.show();
}
catch(Exception e)
{
e.printStackTrace();
}
}
public static void main(String[] args)
{
launch(args);
}
}