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というタイトルのドックアイコンが表示されることです。