Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

import java.awt.Desktop;

public class Main {
    public static void main(String[] a) throws Exception {
        Desktop desktop = null;
        if (Desktop.isDesktopSupported()) {
            desktop = Desktop.getDesktop();
        }

        desktop.mail();
    }
}