Skip to content

Instantly share code, notes, and snippets.

@theShadow89
Created November 29, 2013 16:51
Show Gist options
  • Save theShadow89/7708637 to your computer and use it in GitHub Desktop.
Save theShadow89/7708637 to your computer and use it in GitHub Desktop.
Open Url in Browser
import java.awt.Desktop;
import java.net.URI;
class BrowseURL
{
public static void main(String args[]) throws Exception
{
// Create Desktop object
Desktop d=Desktop.getDesktop();
// Browse a URL, say google.com
d.browse(new URI("http://google.com"));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment