这种情况一般是jdk11以上会出现,最简单直接的解决办法就是新建一个启动类来引导你的application类的运行。
public class Test extends Application {
@Override
public void start(Stage primaryStage) throws Exception {
Button choose = new Button("颜色选择器");
VBox box = new VBox(choose);
box.setPadding(new Insets(20));
box.setSpacing(20);
Scene scene = new Scene(box);
primaryStage.setScene(scene);
primaryStage.setWidth(500);
primaryStage.setHeight(500);
primaryStage.setX(940.0);
primaryStage.setY(400.0);
primaryStage.setTitle("你好(500*500)");
primaryStage.show();
choose.setOnAction(event->{
Newstage newstage = new Newstage();
try {
newstage.start(new Stage());
} catch (Exception e) {
throw new RuntimeException(e);
}
});
}
public static void main(String[] args) {
launch(args);
}
}
在java8里这段代码可以直接运行,但是11以上会报错,此时新建一个启动类:文章来源:https://www.toymoban.com/news/detail-505356.html
public class ToStart {
public static void main(String[] args) {
Test.main(args);
}
}
运行这个启动类就行了。文章来源地址https://www.toymoban.com/news/detail-505356.html
到了这里,关于错误: 缺少 JavaFX 运行时组件, 需要使用该组件来运行此应用程序的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!