JavaFX - 如何在默認系統(tǒng)瀏覽器中加載URL
我們想知道如何在默認系統(tǒng)瀏覽器中加載URL。
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.yjpub.cn";
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();
}
}