我对java fx很陌生,我只是想添加WebView组件。因此,每次添加WebView
Intellij都会返回问题。
这是输出:
Caused by: java.lang.RuntimeException: Exception in Application start method
at javafx.graphics/com.sun.javafx.application.LauncherImpl.launchApplication1(LauncherImpl.java:900)
at javafx.graphics/com.sun.javafx.application.LauncherImpl.lambda$launchApplication$2(LauncherImpl.java:195)
at java.base/java.lang.Thread.run(Thread.java:834)
Caused by: javafx.fxml.LoadException:
这是我的示例.fxml:
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.layout.GridPane?>
<?import javafx.scene.web.WebView?>
<GridPane alignment="center" hgap="10" vgap="10" xmlns:fx="http://javafx.com/fxml/1" xmlns="http://javafx.com/javafx/11.0.1" fx:controller="sample.Controller">
<children>
<WebView fx:id="myweb" prefHeight="200.0" prefWidth="200.0" />
</children>
</GridPane>
这是我的控制器:
import javafx.fxml.FXML;
import javafx.scene.web.WebView;
public class Controller {
@FXML
private WebView myweb;
}
如果我添加另一个东西,一切正常,但添加WebView
后它会返回错误。
我还听说 jdk 11 不支持WebView
。这是真的吗?
只需在模块后面的VM 选项中添加单词javafx.web
。
可以在 VM 选项中使用以下代码行,并添加正在使用的任何其他模块。
--add-modules javafx.controls,javafx.fxml,javafx.graphics,javafx.web