ボタンをクリックすると、アプリケーションが URL を開くようにします。だから私はこれをやっています:
Desktop desktop = Desktop.isDesktopSupported() ? Desktop.getDesktop() : null;
System.out.println("Hey "+desktop);
if (desktop != null && desktop.isSupported(Desktop.Action.BROWSE)) {
try {
desktop.browse(new URL("http://support.apple.com/kb/DL1572").toURI());
System.out.println("here");
} catch (Exception e) {
e.printStackTrace();
}
}
しかし、Desktop.isDesktopSupported()
false を返します。Mac OS X 10.7.5 を使用しています。代替案はありますか?