我们可以将JavaFX Webview添加到容器中吗?
实际上我有一个项目正在进行中,我只希望有一个用于ma UI的窗口。 “ SplitPane” UI对我和我必须显示的功能可能是一个很好的答案。 (请参见下文)
在“视图”部分中,我想显示一个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();
}
}
}