hi every one i am trying to get to web application exist in my computer through java fx web view :
public void start(Stage stage) throws Exception {
WebView webView = new WebView();
WebEngine engine = webView.getEngine();
engine.load("172.0.0.0://HOWEB/documentation:8080");//loadContent("<html> href = C:/Users/kaisios/Desktop/attempt9000.html<\\html>");
VBox vBox = new VBox();
vBox.getChildren().addAll(webView);
Scene scene = new Scene(vBox, 800, 500);
stage.setScene(scene);
stage.show();
}
but it does not load the content . NOTE: I have already run xamp server but i think the formula of the url is wrong