当我尝试运行代码时,一切运行正常,但没有出现GUI,也没有错误或任何其他问题。即使屏幕也被交换,但是没有GUI。
我正在尝试在Eclipse中运行此代码。
import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.stage.Stage;
public class checker extends Application{
@Override
public void start(Stage primaryStage) {
Button bt = new Button("OK");
Scene sc = new Scene(bt, 250, 200);
primaryStage.setScene(sc);
primaryStage.show();
}
public static void main(String args[]) {
launch(args);
System.out.println("Hello");
}
}