在 Swing JFrame 上添加 WebView 控件

2022-09-02 01:10:52

我正在研究与JavaFX控制混合的Swing应用程序。

我创建了一个JavaFX控件()来浏览HTML文件。但是我想知道,如何在Swing的容器上添加此Web视图控件?WebViewJFrame


答案 1

给定一个已经存在的,下面的代码添加一个新的并加载一个URL:jFrameWebView

// You should execute this part on the Event Dispatch Thread
// because it modifies a Swing component 
JFXPanel jfxPanel = new JFXPanel();
jFrame.add(jfxPanel);

// Creation of scene and future interactions with JFXPanel
// should take place on the JavaFX Application Thread
Platform.runLater(() -> {
    WebView webView = new WebView();
    jfxPanel.setScene(new Scene(webView));
    webView.getEngine().load("http://www.stackoverflow.com/");
});

答案 2

JFXPanel允许您在Swing应用程序中嵌入JavaFX。


推荐