We would like to know how to load URL in default system browser.
/* w w w . j a va 2 s . c o m*/ import javafx.application.Application; import javafx.scene.Scene; import javafx.scene.control.Button; import javafx.stage.Stage; public class Main extends Application { public static void main(String[] args) { Application.launch(args); } @Override public void start(Stage stage) { String yahooURL = "http://www.java2s.com"; Button openURLButton = new Button("Go!"); openURLButton.setOnAction(e -> getHostServices().showDocument(yahooURL)); Scene scene = new Scene(openURLButton); stage.setScene(scene); stage.setTitle("Knowing the Host"); stage.show(); } }