WebEngine isn't loading anything

154 Views Asked by At

No errors whatsoever, it just doesn't display anything and when I try and debug the loaded page's title it returns null.

@Override
public void start(final Stage stage) throws Exception {
    WebView view = new WebView();
    WebEngine engine = view.getEngine();
    engine.load("http://www.google.com/");


    Scene scene = new Scene(view, 800, 600);
    stage.setScene(scene);
    stage.show();
}

Result: Result

0

There are 0 best solutions below