Created
July 17, 2014 19:49
-
-
Save DV8FromTheWorld/6b5f1baa5bc48ed1d564 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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