Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

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();
    }
}