“Error: Could not find or load main class” JavaFX Terminal
问题 I'm using the following class from my JavaFX Tutorial: import javafx.application.Application; import javafx.stage.Stage; public class HelloFXApp extends Application { public static void main(String[] args) { // Launch the JavaFX application Application.launch(args); } @Override public void start(Stage stage) { stage.setTitle("Hello JavaFX Application"); stage.show(); } } I'm using Ubuntu and I have the correct path to my .java file in my Terminal.. When I type "javac HelloFXApp.java" it works