1

ボタンをクリックすると、アプリケーションが 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 を使用しています。代替案はありますか?

4

1 に答える 1

1

Macでは、これでうまくいきます。これのおかげで:

private void openUrlInBrowser(String url)
{
 Runtime runtime = Runtime.getRuntime();
 String[] args = { "osascript", "-e", "open location \"" + url + "\"" };
 try
 {
  Process process = runtime.exec(args);
 }
 catch (IOException e)
 {
// do what you want with this
 }
}
于 2013-04-11T13:57:55.493 に答える