0

mac osxでSystemTrayTrayIconとしてのみ実行されるアプリケーション(awtウィンドウとドックアイコンなし)を実行するにはどうすればよいですか?

私が使用しているコードは次のとおりです。

public class App
{   
public static void main( String[] args )
{
    final TrayIcon trayIcon;

    if (SystemTray.isSupported()) {

        SystemTray tray = SystemTray.getSystemTray();
        Image image = Toolkit.getDefaultToolkit().getImage("tray.gif");

        trayIcon = new TrayIcon(image, "Tray Demo");

        trayIcon.setImageAutoSize(true);


        try {
            tray.add(trayIcon);
        } catch (AWTException e) {
            System.err.println("TrayIcon could not be added.");
        }

    } else {

        System.out.println("Tray is not supported");
        //  System Tray is not supported

    }
}
}

問題は、com.cc.ew.Appというタイトルのドックアイコンが表示されることです。

4

1 に答える 1

4

ドックのアイコンを防ぐには、<your-app>-Info.plistファイルにブールキーを追加 LSUIElementしてYESに設定する必要があります。

<key>LSUIElement</key>
<true/>
于 2011-02-20T21:21:15.250 に答える