0

我们可以将 JavaFX Webview 添加到容器中吗?

实际上我有一个正在进行的项目,我希望只有一个窗口用于 ma UI。“SplitPane”用户界面对我和我必须显示的功能来说可能是一个很好的答案。(见下文)

在“视图”部分,我想显示一个 WebView,特别是地图(MapBox 或 OpenStreetMap)并不重要!

实际上我的 map.html 在一个独立的窗口中工作,我只需要知道我想做的事情是否可行,如果可以,你能告诉我怎么做吗?

现在,我有这个类:

import java.io.IOException;

import javax.annotation.PostConstruct;

import javafx.application.Application;
import javafx.fxml.FXMLLoader;
import javafx.scene.Scene;
import javafx.scene.layout.GridPane;
import javafx.scene.web.WebView;
import javafx.stage.Stage;

public class MapViewer extends Application {

    @PostConstruct
    public static void main(String[] args) {

        launch(args);
    }

    public void start(Stage stage) {

        SplitPane root;

        try {
            root = (SplitPane)     FXMLLoader.load(getClass().getResource("Main.fxml"));

            Stage secondStage = new Stage();

            Scene scene = new Scene(root, 750, 300);

                scene.getStylesheets().add(getClass().getResource("application.css").toExternalForm());

            secondStage.setScene(scene);

            secondStage.setTitle("MapView");
            secondStage.sizeToScene();
            secondStage.show();

            Stage stage1 = new Stage();

            WebView webview = new WebView();

            webview.getEngine().load(MapViewer.class.getResource("/view  mapview3.html").toExternalForm());

            stage1.setTitle("MapView");
            stage1.setMaximized(true);
            stage1.setScene(new Scene(webview));
            webview.getEngine().setJavaScriptEnabled(true);

            stage1.show();

        } catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }

    }

}
4

0 回答 0