package hellofx; import javafx.application.Application; import javafx.scene.Scene; import javafx.scene.layout.VBox; import javafx.scene.web.WebEngine; import javafx.scene.web.WebView; import javafx.stage.Stage; public class GUI020 extends Application { @Override public void start(Stage stg) throws Exception { WebView wv = new WebView(); WebEngine we = wv.getEngine(); we.load("http://example.com/"); VBox vb = new VBox(wv); Scene sc = new Scene(vb); stg.setScene(sc); stg.show(); } public static void main(String[] args) { Application.launch(args); } }