Skip to content

Instantly share code, notes, and snippets.

@DV8FromTheWorld
Created July 17, 2014 19:49
Show Gist options
  • Save DV8FromTheWorld/6b5f1baa5bc48ed1d564 to your computer and use it in GitHub Desktop.
Save DV8FromTheWorld/6b5f1baa5bc48ed1d564 to your computer and use it in GitHub Desktop.
Desktop desktop = Desktop.isDesktopSupported() ? Desktop.getDesktop() : null;
if (desktop != null && desktop.isSupported(Desktop.Action.BROWSE))
{
try
{
new URI(url);
btnOpenBrowser.setEnabled(true);
btnCopyLink.setEnabled(true);
}
catch (URISyntaxException e)
{
btnOpenBrowser.setEnabled(false);
btnCopyLink.setEnabled(false);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment