Skip to content

Instantly share code, notes, and snippets.

@liketaurus
Last active April 22, 2017 16:11
Show Gist options
  • Save liketaurus/7df26b81b4f1890ab70b6f632d048d9b to your computer and use it in GitHub Desktop.
Save liketaurus/7df26b81b4f1890ab70b6f632d048d9b to your computer and use it in GitHub Desktop.
How open specified URL from Java code (fragment of Netbeans plugin code)
// ...
@Override
public void actionPerformed(ActionEvent e) {
// TODO implement action body
try {
URLDisplayer.getDefault().showURL(new URL("http://productivityblog.com.ua"));
} catch (MalformedURLException ex) {
JOptionPane.showMessageDialog(null, "Can't open an URL: " + ex.getMessage());
}
}
// ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment