List of usage examples for java.awt Desktop mail
public void mail() throws IOException
From source file:Main.java
public static void main(String[] a) throws Exception { Desktop desktop = null; if (Desktop.isDesktopSupported()) { desktop = Desktop.getDesktop(); }//from ww w .j av a2 s . co m desktop.mail(); }